home *** CD-ROM | disk | FTP | other *** search
/ CU Amiga Super CD-ROM 15 / CU Amiga Magazine's Super CD-ROM 15 (1997)(EMAP Images)(GB)[!][issue 1997-10].iso / CUCD / Graphics / Ghostscript / source / makefile.libnix < prev    next >
Makefile  |  1997-07-06  |  203KB  |  5,761 lines

  1. #    Copyright (C) 1997 Aladdin Enterprises.  All rights reserved.
  2. # This file is part of Aladdin Ghostscript.
  3. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  4. # or distributor accepts any responsibility for the consequences of using it,
  5. # or for whether it serves any particular purpose or works at all, unless he
  6. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  7. # License (the "License") for full details.
  8. # Every copy of Aladdin Ghostscript must include a copy of the License,
  9. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  10. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  11. # under certain conditions described in the License.  Among other things, the
  12. # License requires that the copyright notice and this notice be preserved on
  13. # all copies.
  14.  
  15. # Makefile fragment containing the current revision identification.
  16.  
  17. # Define the name of this makefile.
  18. VERSION_MAK=version.mak
  19.  
  20. # Major and minor version numbers.
  21. # MINOR0 is different from MINOR only if MINOR is a single digit.
  22. GS_VERSION_MAJOR=5
  23. GS_VERSION_MINOR=01
  24. GS_VERSION_MINOR0=01
  25. # Revision date: year x 10000 + month x 100 + day.
  26. GS_REVISIONDATE=19970622
  27.  
  28. # Derived values
  29. GS_VERSION=$(GS_VERSION_MAJOR)$(GS_VERSION_MINOR0)
  30. GS_DOT_VERSION=$(GS_VERSION_MAJOR).$(GS_VERSION_MINOR)
  31. GS_REVISION=$(GS_VERSION)
  32. #    Copyright (C) 1989, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  33. # This file is part of Aladdin Ghostscript.
  34. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  35. # or distributor accepts any responsibility for the consequences of using it,
  36. # or for whether it serves any particular purpose or works at all, unless he
  37. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  38. # License (the "License") for full details.
  39. # Every copy of Aladdin Ghostscript must include a copy of the License,
  40. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  41. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  42. # under certain conditions described in the License.  Among other things, the
  43. # License requires that the copyright notice and this notice be preserved on
  44. # all copies.
  45.  
  46. #### Start of system configuration section. ####
  47.  
  48. VPATH = ./
  49. srcdir = ./
  50.  
  51. # Common prefix for machine-independent installed files.
  52. # prefix = ade: because GS is a Libnix client! && is put on Fish-site
  53. # prefix = /ade when GS is compiled using ixemul.library!
  54. # prefix = ghostscript: because GS uses Libnix and is put on Aminet
  55. #          most end users don't have 'ade:'
  56. prefix = Ghostscript:
  57. #prefix = /local
  58. # Common prefix for machine-dependent installed files.
  59. exec_prefix = $(prefix)
  60.  
  61. # Directory to install executables in.
  62. bindir = $(exec_prefix)
  63. # Directory to install libraries in.
  64. libdir = $(exec_prefix)lib
  65. # Directory to install the Info files in.
  66. infodir = $(prefix)info
  67. # Directory to install script files in.
  68. scriptdir = $(bindir)batch
  69. # Directory to install the man page in.
  70. mandir = $(prefix)man
  71. man1ext = 1
  72. man1dir = $(mandir)/man$(man1ext)
  73. # Number to put on the man page filename.
  74. manext = 1
  75.  
  76. datadir = $(prefix)data
  77. gsdir = $(datadir)
  78. gsdatadir = $(gsdir)
  79.  
  80. docdir=$(prefix)doc
  81. exdir=$(prefix)examples
  82. GS_DOCDIR=$(docdir)
  83.  
  84. # Program to install executables.
  85. INSTALL_PROGRAM = ${INSTALL}
  86. # Program to install data like man pages.
  87. INSTALL_DATA = ${INSTALL} -m 644
  88. # Generic install program.
  89. INSTALL = /bin/install -c
  90.  
  91. CC = gcc
  92. # Use this verion if you compile for Libnix, else the current one
  93. #DEFS =   $(FPU_FLAG) $(CPU_FLAG)
  94. DEFS =   $(FPU_FLAG) $(CPU_FLAG) #-DIXEMUL
  95.  
  96. # Do a 'setenv="-noixemul"' before running 'configure' !
  97. # if one wants the libnix version  of GS
  98. # configure will add it to the other LDFLAGS
  99. LIBS = 
  100.  
  101.  
  102. # Define the default directory/ies for the runtime
  103. # initialization and font files.  Separate multiple directories with a :.
  104.  
  105. GS_LIB_DEFAULT=$(gsdatadir),$(prefix)fonts
  106.  
  107. # Define whether or not searching for initialization files should always
  108. # look in the current directory first.  This leads to well-known security
  109. # and confusion problems, but users insist on it.
  110. # NOTE: this also affects searching for files named on the command line:
  111. # see the "File searching" section of use.txt for full details.
  112. # Because of this, setting SEARCH_HERE_FIRST to 0 is not recommended.
  113.  
  114. SEARCH_HERE_FIRST=1
  115.  
  116. # Define the name of the interpreter initialization file.
  117. # (There is no reason to change this.)
  118.  
  119. GS_INIT=gs_init.ps
  120.  
  121. # Choose generic configuration options.
  122.  
  123. # -DDEBUG
  124. #    includes debugging features (-Z switch) in the code.
  125. #      Code runs substantially slower even if no debugging switches
  126. #      are set.
  127. # -DNOPRIVATE
  128. #    makes private (static) procedures and variables public,
  129. #      so they are visible to the debugger and profiler.
  130. #      No execution time or space penalty.
  131.  
  132. #GENOPT=-DDEBUG
  133. GENOPT=
  134.  
  135. # Define the name of the executable file.
  136.  
  137. GS=gs_$(GS_VERSION)
  138.  
  139. # Define the directory where the IJG JPEG library sources are stored,
  140. # and the major version of the library that is stored there.
  141. # You may need to change this if the IJG library version changes.
  142. # See jpeg.mak for more information.
  143.  
  144. JSRCDIR=$(srcdir)/jpeg-6a
  145. JVERSION=6
  146.  
  147. # Define the directory where the PNG library sources are stored,
  148. # and the version of the library that is stored there.
  149. # You may need to change this if the libpng version changes.
  150. # See libpng.mak for more information.
  151.  
  152. PSRCDIR=$(srcdir)/libpng
  153. PVERSION=96
  154.  
  155. # Choose whether to use a shared version of the PNG library, and if so,
  156. # what its name is.
  157. # See gs.mak and make.txt for more information.
  158.  
  159. SHARE_LIBPNG=0
  160. LIBPNG_NAME=png
  161.  
  162. # Define the directory where the zlib sources are stored.
  163. # See zlib.mak for more information.
  164.  
  165. ZSRCDIR=$(srcdir)/zlib
  166.  
  167. # Choose whether to use a shared version of the zlib library, and if so,
  168. # what its name is (usually libz, but sometimes libgz).
  169. # See gs.mak and make.txt for more information.
  170.  
  171. SHARE_ZLIB=0
  172. #ZLIB_NAME=gz
  173. ZLIB_NAME=z
  174.  
  175. # Define how to build the library archives.  (These are not used in any
  176. # standard configuration.)
  177.  
  178. AR=ar
  179. ARFLAGS=qc
  180. RANLIB=ranlib
  181.  
  182. # Define the configuration ID.  Read gs.mak carefully before changing this.
  183.  
  184. CONFIG=
  185.  
  186. # ------ Platform-specific options ------ #
  187.  
  188. # Define the name of the C compiler.
  189. # JOOP: done in configure script
  190. #CC=gcc
  191.  
  192. # Define the name of the linker for the final link step.
  193. # Normally this is the same as the C compiler.
  194.  
  195. CCLD=$(CC)
  196.  
  197. # Define the default gcc flags.
  198. # To work around the gcc 2.7.x optimizer bug,
  199. # add -Dconst= and remove -Wcast-qual and -Wwrite-strings.
  200.  
  201. #GCFLAGS=-Wall -Wcast-qual -Wpointer-arith -Wstrict-prototypes -Wwrite-strings
  202. GCFLAGS=-Wall -Wpointer-arith -Wstrict-prototypes
  203.  
  204. # Define the other compilation flags.  Add at most one of the following:
  205. #    -DBSD4_2 for 4.2bsd systems.
  206. #    -DSYSV for System V or DG/UX.
  207. #     -DSYSV -D__SVR3 for SCO ODT, ISC Unix 2.2 or before,
  208. #       or any System III Unix, or System V release 3-or-older Unix.
  209. #    -DSVR4 -DSVR4_0 (not -DSYSV) for System V release 4.0.
  210. #    -DSVR4 (not -DSYSV) for System V release 4.2 (or later) and Solaris 2.
  211. # XCFLAGS can be set from the command line.
  212. # We don't include -ansi, because this gets in the way of the platform-
  213. #   specific stuff that <math.h> typically needs; nevertheless, we expect
  214. #   gcc to accept ANSI-style function prototypes and function definitions.
  215. XCFLAGS=
  216.  
  217. #CFLAGS=-O $(GCFLAGS) $(XCFLAGS)
  218.  
  219. # - Make sure that the version string of gdevamiga.c is correctly included
  220. # for that to happen you need to modify the specs file or hand define
  221. # cpu options (-m68030 -DMC68030 -m68881 -DMC68881 etc)
  222. CFLAGS=-fno-builtin -O2 $(GCFLAGS) $(XCFLAGS)
  223.  
  224. # Define platform flags for ld.
  225. # SunOS 4.n may need -Bstatic.
  226. # XLDFLAGS can be set from the command line.
  227. XLDFLAGS=
  228.  
  229. LDFLAGS= $(XLDFLAGS)
  230.  
  231. # Define any extra libraries to link into the executable.
  232. # ISC Unix 2.2 wants -linet.
  233. # SCO Unix needs -lsocket if you aren't including the X11 driver.
  234. # SVR4 may need -lnsl.
  235. # (Libraries required by individual drivers are handled automatically.)
  236.  
  237. EXTRALIBS=
  238.  
  239. # Define the include switch(es) for the X11 header files.
  240. # This can be null if handled in some other way (e.g., the files are
  241. # in /usr/include, or the directory is supplied by an environment variable);
  242. # in particular, SCO Xenix, Unix, and ODT just want
  243. #XINCLUDE=
  244. # Note that x_.h expects to find the header files in $(XINCLUDE)/X11,
  245. # not in $(XINCLUDE).
  246.  
  247. XINCLUDE=-I/usr/X11R6.1/include
  248.  
  249. # Define the directory/ies and library names for the X11 library files.
  250. # XLIBDIRS is for ld and should include -L; XLIBDIR is for LD_RUN_PATH
  251. # (dynamic libraries on SVR4) and should not include -L.
  252. # Both can be null if these files are in the default linker search path;
  253. # in particular, SCO Xenix, Unix, and ODT just want
  254. #XLIBDIRS=
  255. # X11R6 (on any platform) may need
  256. #XLIBS=Xt SM ICE Xext X11
  257.  
  258. #XLIBDIRS=-L/usr/local/X/lib
  259. XLIBDIRS=-L/usr/X11R6.1/lib
  260. XLIBDIR=
  261. XLIBS=Xt Xext X11
  262.  
  263. # Define whether this platform has floating point hardware:
  264. #    FPU_TYPE=2 means floating point is faster than fixed point.
  265. # (This is the case on some RISCs with multiple instruction dispatch.)
  266. #    FPU_TYPE=1 means floating point is at worst only slightly slower
  267. # than fixed point.
  268. #    FPU_TYPE=0 means that floating point may be considerably slower.
  269. #    FPU_TYPE=-1 means that floating point is always much slower than
  270. # fixed point.
  271.  
  272. FPU_TYPE=1
  273.  
  274. # ------ Devices and features ------ #
  275.  
  276. # Choose the language feature(s) to include.  See gs.mak for details.
  277.  
  278. FEATURE_DEVS=level2.dev pdf.dev pipe.dev
  279.  
  280. # Choose whether to compile the .ps initialization files into the executable.
  281. # See gs.mak for details.
  282.  
  283. COMPILE_INITS=0
  284.  
  285. # Choose whether to store band lists on files or in memory.
  286. # The choices are 'file' or 'memory'.
  287.  
  288. BAND_LIST_STORAGE=file
  289.  
  290. # Choose which compression method to use when storing band lists in memory.
  291. # The choices are 'lzw' or 'zlib'.  lzw is not recommended, because the
  292. # LZW-compatible code in Ghostscript doesn't actually compress its input.
  293.  
  294. BAND_LIST_COMPRESSOR=zlib
  295.  
  296. # Choose the implementation of file I/O: 'stdio', 'fd', or 'both'.
  297. # See gs.mak and sfxfd.c for more details.
  298.  
  299. FILE_IMPLEMENTATION=stdio
  300.  
  301. # Choose the device(s) to include.  See devs.mak for details.
  302. # JOOP: currently only the Amiga driver and PNG are active. 
  303. #       If you want more/other devices active then remove '#' and recompile.
  304. DEVICE_DEVS=amiga.dev amiga_printer.dev amiga_ilbm.dev amiga_custom.dev
  305. DEVICE_DEVS1=epson.dev eps9mid.dev eps9high.dev st800.dev stcolor.dev
  306. DEVICE_DEVS2=deskjet.dev djet500.dev laserjet.dev ljetplus.dev ljet2p.dev ljet3.dev ljet4.dev
  307. DEVICE_DEVS3=cdeskjet.dev cdjcolor.dev cdjmono.dev cdj550.dev pj.dev pjxl.dev pjxl300.dev
  308. DEVICE_DEVS4=uniprint.dev
  309. DEVICE_DEVS5=bj10e.dev bj200.dev bjc600.dev bjc800.dev
  310. DEVICE_DEVS6=faxg3.dev faxg32d.dev faxg4.dev
  311. DEVICE_DEVS7=pcxmono.dev pcxgray.dev pcx16.dev pcx256.dev pcx24b.dev pcxcmyk.dev
  312. DEVICE_DEVS8=pbm.dev pbmraw.dev pgm.dev pgmraw.dev pgnm.dev pgnmraw.dev pnm.dev pnmraw.dev ppm.dev ppmraw.dev
  313. DEVICE_DEVS9=tiffcrle.dev tiffg3.dev tiffg32d.dev tiffg4.dev tifflzw.dev tiffpack.dev
  314. DEVICE_DEVS10=tiff12nc.dev tiff24nc.dev
  315. DEVICE_DEVS11=bmpmono.dev bmp16.dev bmp256.dev bmp16m.dev
  316. DEVICE_DEVS12=psmono.dev psgray.dev bit.dev bitrgb.dev bitcmyk.dev
  317. DEVICE_DEVS13=pngmono.dev pnggray.dev png16.dev png256.dev png16m.dev
  318. DEVICE_DEVS14=jpeg.dev jpeggray.dev
  319. DEVICE_DEVS15=pdfwrite.dev pswrite.dev epswrite.dev pxlmono.dev pxlcolor.dev
  320.  
  321. # ---------------------------- End of options --------------------------- #
  322.  
  323. # Define the name of the partial makefile that specifies options --
  324. # used in dependencies.
  325.  
  326. MAKEFILE=gcc-head.mak
  327.  
  328. # Define the ANSI-to-K&R dependency.  (gcc accepts ANSI syntax.)
  329.  
  330. AK=
  331.  
  332. # Define the compilation rules and flags.
  333.  
  334. CCC=$(CC) $(CCFLAGS) -c
  335. CCAUX=$(CC)
  336. #We can't use -fomit-frame-pointer with -pg....
  337. #CCLEAF=$(CCC)
  338. CCLEAF=$(CCC) -fomit-frame-pointer
  339.  
  340. # --------------------------- Generic makefile ---------------------------- #
  341.  
  342. # The remainder of the makefile (unixhead.mak, gs.mak, devs.mak, unixtail.mak)
  343. # is generic.  tar_cat concatenates all these together.
  344. #    Copyright (C) 1990, 1993, 1996 Aladdin Enterprises.  All rights reserved.
  345. # This file is part of Aladdin Ghostscript.
  346. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  347. # or distributor accepts any responsibility for the consequences of using it,
  348. # or for whether it serves any particular purpose or works at all, unless he
  349. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  350. # License (the "License") for full details.
  351. # Every copy of Aladdin Ghostscript must include a copy of the License,
  352. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  353. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  354. # under certain conditions described in the License.  Among other things, the
  355. # License requires that the copyright notice and this notice be preserved on
  356. # all copies.
  357.  
  358. # Partial makefile common to all Unix configurations.
  359.  
  360. # This part of the makefile gets inserted after the compiler-specific part
  361. # (xxx-head.mak) and before gs.mak and devs.mak.
  362.  
  363. # ----------------------------- Generic stuff ----------------------------- #
  364.  
  365. # Define the platform name.  For a "stock" System V platform,
  366. # use sysv_ instead of unix_.
  367.  
  368. PLATFORM=amiga_
  369.  
  370. # Define the syntax for command, object, and executable files.
  371.  
  372. CMD=
  373. O=-o ./
  374. OBJ=o
  375. XE=
  376. XEAUX=
  377.  
  378. # Define the current directory prefix and command invocations.
  379.  
  380. CAT=cat
  381. D=/
  382. EXPP=
  383. EXP=
  384. SHELL=/bin/sh
  385. SH=$(SHELL)
  386. SHP=$(SH) $(EXP)
  387.  
  388. # Define generic commands.
  389.  
  390. CP_=cp
  391. RM_=rm -f
  392. RMN_=rm -f
  393.  
  394. # Define the arguments for genconf.
  395.  
  396. CONFILES=-p "%s&s&&" -pl "&-l%s&s&&" -pL "&-L%s&s&&" -ol $(ld_tr)
  397.  
  398. # Define the compilation rules and flags.
  399.  
  400. CCFLAGS=$(GENOPT) $(CFLAGS)
  401.  
  402. .c.o:
  403.     $(CCC) -c -I. -I$(srcdir) $(DEFS) $< $(OUTPUT_OPTION)
  404.  
  405. #.c.o: $(AK)
  406. #    $(CCC) $*.c
  407.  
  408. CCCF=$(CCC)
  409. CCD=$(CCC)
  410. CCINT=$(CCC)
  411.  
  412. BEGINFILES=
  413. CCBEGIN=$(CCC) *.c
  414.  
  415. # Patch a couple of PC-specific things that aren't relevant to Unix builds,
  416. # but that cause `make' to produce warnings.
  417.  
  418. BGIDIR=***UNUSED***
  419. PCFBASM=
  420. #    Copyright (C) 1989, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  421. # This file is part of Aladdin Ghostscript.
  422. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  423. # or distributor accepts any responsibility for the consequences of using it,
  424. # or for whether it serves any particular purpose or works at all, unless he
  425. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  426. # License (the "License") for full details.
  427. # Every copy of Aladdin Ghostscript must include a copy of the License,
  428. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  429. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  430. # under certain conditions described in the License.  Among other things, the
  431. # License requires that the copyright notice and this notice be preserved on
  432. # all copies.
  433.  
  434. # Generic makefile, common to all platforms.
  435. # The platform-specific makefiles `include' this file.
  436. # They define the following symbols:
  437. #    GS - the name of the executable (without the extension, if any).
  438. #    GS_LIB_DEFAULT - the default directory/ies for searching for the
  439. #        initialization and font files at run time.
  440. #    SEARCH_HERE_FIRST - the default setting of -P (whether or not to
  441. #        look for files in the current directory first).
  442. #    GS_DOCDIR - the directory where documentation will be available
  443. #        at run time.
  444. #    JSRCDIR - the directory where the IJG JPEG library source code
  445. #        is stored (at compilation time).
  446. #    JVERSION - the major version number of the IJG JPEG library.
  447. #    PSRCDIR, PVERSION - the same for libpng.
  448. #    ZSRCDIR - the same for zlib.
  449. #    SHARE_LIBPNG - normally 0; if set to 1, asks the linker to use
  450. #        an existing compiled libpng (-lpng) instead of compiling and
  451. #        linking libpng explicitly.
  452. #    LIBPNG_NAME, the name of the shared libpng, currently always
  453. #        png (libpng, -lpng).
  454. #    SHARE_ZLIB - normally 0; if set to 1, asks the linker to use
  455. #        an existing compiled zlib (-lgz or -lz) instead of compiling
  456. #        and linking libgz/libz explicitly.
  457. #    ZLIB_NAME - the name of the shared zlib, either gz (for libgz, -lgz)
  458. #        or z (for libz, -lz).
  459. #    CONFIG - a configuration ID, added at the request of a customer,
  460. #        that is supposed to help in maintaining multiple variants in
  461. #        a single directory.  Normally this is an empty string;
  462. #        it may be any string that is legal as part of a file name.
  463. #    DEVICE_DEVS - the devices to include in the executable.
  464. #        See devs.mak for details.
  465. #    DEVICE_DEVS1...DEVICE_DEVS15 - additional devices, if the definition
  466. #        of DEVICE_DEVS doesn't fit on one line.  See devs.mak for details.
  467. #    FEATURE_DEVS - what features to include in the executable.
  468. #        Normally this is one of:
  469. #            level1 - a standard PostScript Level 1 language
  470. #            interpreter.
  471. #            level2 - a standard PostScript Level 2 language
  472. #            interpreter.
  473. #            pdf - a PDF-capable interpreter.
  474. #        You may include both level1 and pdf, or both level2 and pdf.
  475. #        The following feature may be added to either of the standard
  476. #        configurations:
  477. #            ccfonts - precompile fonts into C, and link them
  478. #            with the executable.  See fonts.txt for details.
  479. #        The remaining features are of interest primarily to developers
  480. #        who want to "mix and match" features to create custom
  481. #        configurations:
  482. #            dps - (partial) support for Display PostScript extensions:
  483. #            see language.txt for details.
  484. #            btoken - support for binary token encodings.
  485. #            Included automatically in the dps and level2 features.
  486. #            cidfont - (currently partial) support for CID-keyed fonts.
  487. #            color - support for the Level 1 CMYK color extensions.
  488. #            Included automatically in the dps and level2 features.
  489. #            compfont - support for composite (type 0) fonts.
  490. #            Included automatically in the level2 feature.
  491. #            dct - support for DCTEncode/Decode filters.
  492. #            Included automatically in the level2 feature.
  493. #            epsf - support for recognizing and skipping the binary
  494. #            header of MS-DOS EPSF files.
  495. #            filter - support for Level 2 filters (other than eexec,
  496. #            ASCIIHexEncode/Decode, NullEncode, PFBDecode,
  497. #            RunLengthEncode/Decode, and SubFileDecode, which are
  498. #            always included, and DCTEncode/Decode,
  499. #            which are separate).
  500. #            Included automatically in the level2 feature.
  501. #            fzlib - support for zlibEncode/Decode filters.
  502. #            ttfont - support for TrueType fonts.
  503. #            type1 - support for Type 1 fonts and eexec;
  504. #            normally included automatically in all configurations.
  505. #            type42 - support for Type 42 (embedded TrueType) fonts.
  506. #            Included automatically in the level2 feature.
  507. #        There are quite a number of other sub-features that can be
  508. #        selectively included in or excluded from a configuration,
  509. #        but the above are the ones that are most likely to be of
  510. #        interest.
  511. #    COMPILE_INITS - normally 0; if set to 1, compiles the PostScript
  512. #        language initialization files (gs_init.ps et al) into the
  513. #        executable, eliminating the need for these files to be present
  514. #        at run time.
  515. #    BAND_LIST_STORAGE - normally file; if set to memory, stores band
  516. #        lists in memory (with compression if needed).
  517. #    BAND_LIST_COMPRESSOR - normally zlib: selects the compression method
  518. #        to use for band lists in memory.
  519. #    FILE_IMPLEMENTATION - normally stdio; if set to fd, uses file
  520. #        descriptors instead of buffered stdio for file I/O; if set to
  521. #        both, provides both implementations with different procedure
  522. #        names for the fd-based implementation (see sfxfd.c for
  523. #        more information).
  524. #    EXTEND_NAMES - a value N between 0 and 6, indicating that the name
  525. #        table should have a capacity of 2^(16+N) names.  This normally
  526. #        should be set to 0 (or left undefined), since non-zero values
  527. #        result in a larger fixed space overhead and slightly slower code.
  528. #        EXTEND_NAMES is ignored in 16-bit environments.
  529. #
  530. # It is very unlikely that anyone would want to edit the remaining
  531. #   symbols, but we describe them here for completeness:
  532. #    GS_INIT - the name of the initialization file for the interpreter,
  533. #        normally gs_init.ps.
  534. #    PLATFORM - a "device" name for the platform, so that platforms can
  535. #        add various kinds of resources like devices and features.
  536. #    CMD - the suffix for shell command files (e.g., null or .bat).
  537. #        (This is only needed in a few places.)
  538. #    D - the directory separator character (\ for MS-DOS, / for Unix).
  539. #    O - the string for specifying the output file from the C compiler
  540. #        (-o for MS-DOS, -o ./ for Unix).
  541. #    OBJ - the extension for relocatable object files (e.g., o or obj).
  542. #    XE - the extension for executable files (e.g., null or .exe).
  543. #    XEAUX - the extension for the executable files (e.g., null or .exe)
  544. #        for the utility programs (ansi2knr and those compiled with
  545. #        CCAUX).
  546. #    BEGINFILES - the list of files that `make begin' and `make clean'
  547. #        should delete.
  548. #    CCA2K - the C invocation for the ansi2knr program, which is the only
  549. #        one that doesn't use ANSI C syntax.  (It is only needed if
  550. #        the main C compiler also isn't an ANSI compiler.)
  551. #    CCAUX - the C invocation for auxiliary programs (echogs, genarch,
  552. #        genconf, geninit).
  553. #    CCBEGIN - the compilation command for `make begin', normally
  554. #        $(CCC) *.c.
  555. #    CCC - the C invocation for normal compilation.
  556. #    CCD - the C invocation for files that store into frame buffers or
  557. #        device registers.  Needed because some optimizing compilers
  558. #        will eliminate necessary stores.
  559. #    CCCF - the C invocation for compiled fonts and other large,
  560. #        self-contained data modules.  Needed because MS-DOS
  561. #        requires using the 'huge' memory model for these.
  562. #    CCINT - the C invocation for compiling the main interpreter module,
  563. #        normally the same as CCC: this is needed because the
  564. #        Borland compiler generates *worse* code for this module
  565. #        (but only this module) when optimization (-O) is turned on.
  566. #    CCLEAF - the C invocation for compiling modules that contain only
  567. #        leaf procedures, which don't need to build stack frames.
  568. #        This is needed only because many compilers aren't able to
  569. #        recognize leaf procedures on their own.
  570. #    AK - if source files must be converted from ANSI to K&R syntax,
  571. #        this is $(ANSI2KNR_XE); if not, it is null.
  572. #        If a particular platform requires other utility programs
  573. #        to be built, AK must include them too.
  574. #    SHP - the prefix for invoking a shell script in the current directory
  575. #        (null for MS-DOS, $(SH) ./ for Unix).
  576. #    EXPP, EXP - the prefix for invoking an executable program in the
  577. #        current directory (null for MS-DOS, ./ for Unix).
  578. #    SH - the shell for scripts (null on MS-DOS, sh on Unix).
  579. #    CONFILES - the arguments for genconf to generate the appropriate
  580. #        linker control files (various).
  581. #    CP_ - the command for copying one file to another.  Because of
  582. #        limitations in the MS-DOS/MS Windows environment, the
  583. #        second argument must either be '.' (in which case the
  584. #        write date may be either preserved or set to the current
  585. #        date) or a file name (in which case the write date is
  586. #        always updated).
  587. #    RM_ - the command for deleting (a) file(s) (including wild cards,
  588. #        but limited to a single file or pattern).
  589. #    RMN_ = the command for deleting multiple files / patterns.
  590. #
  591. # The platform-specific makefiles must also include rules for creating
  592. # certain dynamically generated files:
  593. #    gconfig_.h - this indicates the presence or absence of
  594. #        certain system header files that are located in different
  595. #        places on different systems.  (It could be generated by
  596. #        the GNU `configure' program.)
  597. #    gconfigv.h - this indicates the status of certain machine-
  598. #        and configuration-specific features derived from definitions
  599. #        in the platform-specific makefile.
  600.  
  601. # Define the name of this makefile.
  602. GS_MAK=makefile
  603.  
  604. # Define the names of the executables.
  605. GS_XE=$(GS)$(XE)
  606. ANSI2KNR_XE=ansi2knr$(XEAUX)
  607. ECHOGS_XE=echogs$(XEAUX)
  608. GENARCH_XE=genarch$(XEAUX)
  609. GENCONF_XE=genconf$(XEAUX)
  610. GENINIT_XE=geninit$(XEAUX)
  611.  
  612. # Define the names of the CONFIG-dependent header files.
  613. # gconfig*.h and gconfx*.h are generated dynamically.
  614. gconfig_h=gconfxx$(CONFIG).h
  615. gconfigf_h=gconfxc$(CONFIG).h
  616.  
  617. # Watcom make insists that rules have a non-empty body!
  618. all default: $(GS_XE)
  619.     $(RM_) _temp_*
  620.  
  621. distclean maintainer-clean realclean: clean
  622.     $(RM_) makefile
  623.  
  624. clean: mostlyclean
  625.     $(RM_) arch.h
  626.     $(RM_) $(GS_XE)
  627.  
  628. mostlyclean:
  629.     $(RMN_) *.$(OBJ) *.a core gmon.out
  630.     $(RMN_) *.dev *.d_* devs*.tr gconfig*.h gconfx*.h j*.h o*.tr l*.tr
  631.     $(RMN_) deflate.h zutil.h
  632.     $(RMN_) gconfig*.c gscdefs*.c iconfig*.c
  633.     $(RMN_) _temp_* _temp_*.* *.map *.sym
  634.     $(RMN_) $(ANSI2KNR_XE) $(ECHOGS_XE) $(GENARCH_XE) $(GENCONF_XE) $(GENINIT_XE)
  635.     $(RMN_) gs_init.c $(BEGINFILES)
  636.  
  637. # Remove only configuration-dependent information.
  638. config-clean:
  639.     $(RMN_) *.dev devs*.tr gconfig*.h gconfx*.h o*.tr l*.tr
  640.  
  641. # A rule to do a quick and dirty compilation attempt when first installing
  642. # the interpreter.  Many of the compilations will fail:
  643. # follow this with 'make'.
  644.  
  645. begin:
  646.     $(RMN_) arch.h gconfig*.h gconfx*.h $(GENARCH_XE) $(GS_XE)
  647.     $(RMN_) gconfig*.c gscdefs*.c iconfig*.c
  648.     $(RMN_) gs_init.c $(BEGINFILES)
  649.     make arch.h gconfigv.h
  650.     - $(CCBEGIN)
  651.     $(RMN_) gconfig.$(OBJ) gdev*.$(OBJ) gp_*.$(OBJ) gscdefs.$(OBJ) gsmisc.$(OBJ)
  652.     $(RMN_) ccfontab.$(OBJ) iconfig.$(OBJ) iinit.$(OBJ) interp.$(OBJ)
  653.  
  654. # Auxiliary programs
  655.  
  656. arch.h: $(GENARCH_XE)
  657.     $(EXPP) $(EXP)genarch arch.h
  658.  
  659. # Macros for constructing the *.dev files that describe features and
  660. # devices.
  661. SETDEV=$(EXP)echogs -e .dev -w- -l-dev -F -s -l-obj
  662. SETPDEV=$(EXP)echogs -e .dev -w- -l-dev -F -s -l-include -lpage -l-obj
  663. SETMOD=$(EXP)echogs -e .dev -w- -l-obj
  664. ADDMOD=$(EXP)echogs -e .dev -a-
  665.  
  666. # Define the compilation commands for the third-party libraries.
  667. CCCP=$(CCC) -I$(PSRCDIR) -I$(ZSRCDIR) -DPNG_USE_CONST
  668. CCCJ=$(CCC) -I. -I$(srcdir) -I$(JSRCDIR)
  669. CCCZ=$(CCC) -I. -I$(srcdir) -I$(ZSRCDIR)
  670.  
  671. ######################## How to define new 'features' #######################
  672. #
  673. # One defines new 'features' exactly like devices (see devs.mak for details).
  674. # For example, one would define a feature abc by adding the following to
  675. # gs.mak:
  676. #
  677. #    abc_=abc1.$(OBJ) ...
  678. #    abc.dev: $(GS_MAK) $(ECHOGS_XE) $(abc_)
  679. #        $(SETMOD) abc $(abc_)
  680. #        $(ADDMOD) abc -obj ... [if needed]
  681. #        $(ADDMOD) abc -oper ... [if appropriate]
  682. #        $(ADDMOD) abc -ps ... [if appropriate]
  683. #
  684. # If the abc feature requires the presence of some other features jkl and
  685. # pqr, then the rules must look like this:
  686. #
  687. #    abc_=abc1.$(OBJ) ...
  688. #    abc.dev: $(GS_MAK) $(ECHOGS_XE) $(abc_) jkl.dev pqr.dev
  689. #        $(SETMOD) abc $(abc_)
  690. #        ...
  691. #        $(ADDMOD) abc -include jkl pqr
  692.  
  693. # --------------------- Configuration-dependent files --------------------- #
  694.  
  695. # gconfig.h shouldn't have to depend on DEVS_ALL, but that would
  696. # involve rewriting gsconfig to only save the device name, not the
  697. # contents of the <device>.dev files.
  698. # FEATURE_DEVS must precede DEVICE_DEVS so that devices can override
  699. # features in obscure cases.
  700.  
  701. DEVS_ALL=$(PLATFORM).dev $(FEATURE_DEVS) \
  702.   $(DEVICE_DEVS) $(DEVICE_DEVS1) \
  703.   $(DEVICE_DEVS2) $(DEVICE_DEVS3) $(DEVICE_DEVS4) $(DEVICE_DEVS5) \
  704.   $(DEVICE_DEVS6) $(DEVICE_DEVS7) $(DEVICE_DEVS8) $(DEVICE_DEVS9) \
  705.   $(DEVICE_DEVS10) $(DEVICE_DEVS11) $(DEVICE_DEVS12) $(DEVICE_DEVS13) \
  706.   $(DEVICE_DEVS14) $(DEVICE_DEVS15)
  707.  
  708. devs_tr=devs.tr$(CONFIG)
  709. $(devs_tr): $(GS_MAK) $(MAKEFILE) $(ECHOGS_XE)
  710.     $(EXP)echogs -w $(devs_tr) - -include $(PLATFORM).dev
  711.     $(EXP)echogs -a $(devs_tr) - $(FEATURE_DEVS)
  712.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS)
  713.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS1)
  714.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS2)
  715.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS3)
  716.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS4)
  717.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS5)
  718.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS6)
  719.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS7)
  720.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS8)
  721.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS9)
  722.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS10)
  723.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS11)
  724.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS12)
  725.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS13)
  726.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS14)
  727.     $(EXP)echogs -a $(devs_tr) - $(DEVICE_DEVS15)
  728.  
  729. # GCONFIG_EXTRAS can be set on the command line.
  730. # Note that it consists of arguments for echogs, i.e.,
  731. # it isn't just literal text.
  732. GCONFIG_EXTRAS=
  733.  
  734. ld_tr=ld$(CONFIG).tr
  735. $(gconfig_h) $(ld_tr) lib.tr: \
  736.   $(GS_MAK) $(MAKEFILE) version.mak $(GENCONF_XE) $(ECHOGS_XE) $(devs_tr) $(DEVS_ALL) libcore.dev
  737.     $(EXP)genconf $(devs_tr) libcore.dev -h $(gconfig_h) $(CONFILES)
  738.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_LIB_DEFAULT -x 2022 $(GS_LIB_DEFAULT) -x 22
  739.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u SEARCH_HERE_FIRST -s $(SEARCH_HERE_FIRST)
  740.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_DOCDIR -x 2022 $(GS_DOCDIR) -x 22
  741.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_INIT -x 2022 $(GS_INIT) -x 22
  742.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_REVISION -s $(GS_REVISION)
  743.     $(EXP)echogs -a $(gconfig_h) -x 23 define -s -u GS_REVISIONDATE -s $(GS_REVISIONDATE)
  744.     $(EXP)echogs -a $(gconfig_h) $(GCONFIG_EXTRAS)
  745.  
  746. ################################################################
  747. # The other platform-independent makefiles are concatenated
  748. # (or included) after this one:
  749. #    lib.mak
  750. #    int.mak
  751. #    jpeg.mak
  752. #    libpng.mak
  753. #    zlib.mak
  754. #    devs.mak
  755. ################################################################
  756. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  757. # This file is part of Aladdin Ghostscript.
  758. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  759. # or distributor accepts any responsibility for the consequences of using it,
  760. # or for whether it serves any particular purpose or works at all, unless he
  761. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  762. # License (the "License") for full details.
  763. # Every copy of Aladdin Ghostscript must include a copy of the License,
  764. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  765. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  766. # under certain conditions described in the License.  Among other things, the
  767. # License requires that the copyright notice and this notice be preserved on
  768. # all copies.
  769.  
  770. # (Platform-independent) makefile for graphics library and other support code.
  771. # See the end of gs.mak for where this fits into the build process.
  772.  
  773. # Define the name of this makefile.
  774. LIB_MAK=lib.mak
  775.  
  776. # Define the inter-dependencies of the .h files.
  777. # Since not all versions of `make' defer expansion of macros,
  778. # we must list these in bottom-to-top order.
  779.  
  780. # Generic files
  781.  
  782. arch_h=arch.h
  783. stdpre_h=stdpre.h
  784. std_h=std.h $(arch_h) $(stdpre_h)
  785.  
  786. # Platform interfaces
  787.  
  788. gp_h=gp.h
  789. gpcheck_h=gpcheck.h
  790.  
  791. # Configuration definitions
  792.  
  793. # gconfig*.h are generated dynamically.
  794. gconfig__h=gconfig_.h
  795. gconfigv_h=gconfigv.h
  796. gscdefs_h=gscdefs.h
  797.  
  798. # C library interfaces
  799.  
  800. # Because of variations in the "standard" header files between systems, and
  801. # because we must include std.h before any file that includes sys/types.h,
  802. # we define local include files named *_.h to substitute for <*.h>.
  803.  
  804. vmsmath_h=vmsmath.h
  805.  
  806. dos__h=dos_.h
  807. ctype__h=ctype_.h $(std_h)
  808. dirent__h=dirent_.h $(std_h) $(gconfig__h)
  809. errno__h=errno_.h $(std_h)
  810. malloc__h=malloc_.h $(std_h)
  811. math__h=math_.h $(std_h) $(vmsmath_h)
  812. memory__h=memory_.h $(std_h)
  813. stat__h=stat_.h $(std_h)
  814. stdio__h=stdio_.h $(std_h)
  815. string__h=string_.h $(std_h)
  816. time__h=time_.h $(std_h) $(gconfig__h)
  817. windows__h=windows_.h
  818.  
  819. # Miscellaneous
  820.  
  821. gdebug_h=gdebug.h
  822. gsalloc_h=gsalloc.h
  823. gsargs_h=gsargs.h
  824. gserror_h=gserror.h
  825. gserrors_h=gserrors.h
  826. gsexit_h=gsexit.h
  827. gsgc_h=gsgc.h
  828. gsio_h=gsio.h
  829. gsmdebug_h=gsmdebug.h
  830. gsmemory_h=gsmemory.h
  831. gsrefct_h=gsrefct.h
  832. gsstruct_h=gsstruct.h
  833. gstypes_h=gstypes.h
  834. gx_h=gx.h $(stdio__h) $(gdebug_h) $(gserror_h) $(gsio_h) $(gsmemory_h) $(gstypes_h)
  835.  
  836. GX=$(AK) $(gx_h)
  837. GXERR=$(GX) $(gserrors_h)
  838.  
  839. ###### Support
  840.  
  841. ### Include files
  842.  
  843. gsbitops_h=gsbitops.h
  844. gsbittab_h=gsbittab.h
  845. gsflip_h=gsflip.h
  846. gsuid_h=gsuid.h
  847. gsutil_h=gsutil.h
  848. gxarith_h=gxarith.h
  849. gxbitmap_h=gxbitmap.h $(gstypes_h)
  850. gxfarith_h=gxfarith.h $(gconfigv_h) $(gxarith_h)
  851. gxfixed_h=gxfixed.h
  852. gxobj_h=gxobj.h $(gxbitmap_h)
  853. # Out of order
  854. gxalloc_h=gxalloc.h $(gsalloc_h) $(gxobj_h)
  855.  
  856. ### Executable code
  857.  
  858. gsalloc.$(OBJ): gsalloc.c $(GX) $(memory__h) $(string__h) \
  859.   $(gsmdebug_h) $(gsstruct_h) $(gxalloc_h)
  860.  
  861. gsargs.$(OBJ): gsargs.c $(ctype__h) $(stdio__h) $(string__h)\
  862.  $(gsargs_h) $(gsexit_h) $(gsmemory_h)
  863.  
  864. gsbitops.$(OBJ): gsbitops.c $(AK) $(memory__h) $(stdio__h)\
  865.  $(gdebug_h) $(gsbitops_h) $(gstypes_h)
  866.  
  867. gsbittab.$(OBJ): gsbittab.c $(AK) $(stdpre_h) $(gsbittab_h)
  868.  
  869. # gsfemu is only used in FPU-less configurations, and currently only with gcc.
  870. # We thought using CCLEAF would produce smaller code, but it actually
  871. # produces larger code!
  872. gsfemu.$(OBJ): gsfemu.c $(AK) $(std_h)
  873.  
  874. # gsflip is not part of the standard configuration: it's rather large,
  875. # and no standard facility requires it.
  876. gsflip.$(OBJ): gsflip.c $(GX) $(gsbittab_h) $(gsflip_h)
  877.     $(CCLEAF) -I. $(srcdir)/gsflip.c
  878.  
  879. gsmemory.$(OBJ): gsmemory.c $(GX) $(malloc__h) $(memory__h) \
  880.   $(gsmdebug_h) $(gsrefct_h) $(gsstruct_h)
  881.  
  882. gsmisc.$(OBJ): gsmisc.c $(GXERR) $(gconfigv_h) \
  883.   $(malloc__h) $(math__h) $(memory__h) $(gpcheck_h) $(gxfarith_h) $(gxfixed_h)
  884.  
  885. # gsnogc currently is only used in library-only configurations.
  886. gsnogc.$(OBJ): gsnogc.c $(GX)\
  887.  $(gsgc_h) $(gsmdebug_h) $(gsstruct_h) $(gxalloc_h)
  888.  
  889. gsutil.$(OBJ): gsutil.c $(AK) $(memory__h) $(string__h) $(gconfigv_h)\
  890.  $(gstypes_h) $(gsuid_h) $(gsutil_h)
  891.  
  892. ###### Low-level facilities and utilities
  893.  
  894. ### Include files
  895.  
  896. gdevbbox_h=gdevbbox.h
  897. gdevmem_h=gdevmem.h $(gsbitops_h)
  898. gdevmrop_h=gdevmrop.h
  899.  
  900. gsccode_h=gsccode.h
  901. gsccolor_h=gsccolor.h $(gsstruct_h)
  902. gscsel_h=gscsel.h
  903. gscolor1_h=gscolor1.h
  904. gscoord_h=gscoord.h
  905. gscpm_h=gscpm.h
  906. gsdevice_h=gsdevice.h
  907. gsfcmap_h=gsfcmap.h $(gsccode_h)
  908. gsfont_h=gsfont.h
  909. gshsb_h=gshsb.h
  910. gsht_h=gsht.h
  911. gsht1_h=gsht1.h $(gsht_h)
  912. gsiparam_h=gsiparam.h
  913. gsjconf_h=gsjconf.h $(std_h)
  914. gslib_h=gslib.h
  915. gslparam_h=gslparam.h
  916. gsmatrix_h=gsmatrix.h
  917. gspaint_h=gspaint.h
  918. gsparam_h=gsparam.h
  919. gspath2_h=gspath2.h
  920. gspenum_h=gspenum.h
  921. gsropt_h=gsropt.h
  922. gsxfont_h=gsxfont.h
  923. # Out of order
  924. gschar_h=gschar.h $(gsccode_h) $(gscpm_h)
  925. gscolor2_h=gscolor2.h $(gsccolor_h) $(gsuid_h) $(gxbitmap_h)
  926. gsimage_h=gsimage.h $(gsiparam_h)
  927. gsline_h=gsline.h $(gslparam_h)
  928. gspath_h=gspath.h $(gspenum_h)
  929. gsrop_h=gsrop.h $(gsropt_h)
  930.  
  931. gxbcache_h=gxbcache.h $(gxbitmap_h)
  932. gxchar_h=gxchar.h $(gschar_h)
  933. gxcindex_h=gxcindex.h
  934. gxcvalue_h=gxcvalue.h
  935. gxclio_h=gxclio.h
  936. gxclip2_h=gxclip2.h
  937. gxcolor2_h=gxcolor2.h $(gscolor2_h) $(gsrefct_h) $(gxbitmap_h)
  938. gxcoord_h=gxcoord.h $(gscoord_h)
  939. gxcpath_h=gxcpath.h
  940. gxdda_h=gxdda.h
  941. gxdevrop_h=gxdevrop.h
  942. gxdevmem_h=gxdevmem.h
  943. gxdither_h=gxdither.h
  944. gxfcache_h=gxfcache.h $(gsuid_h) $(gsxfont_h) $(gxbcache_h)
  945. gxfcmap_h=gxfcmap.h $(gsfcmap_h) $(gsuid_h)
  946. gxfont_h=gxfont.h $(gsfont_h) $(gsuid_h) $(gsstruct_h)
  947. gxfont0_h=gxfont0.h
  948. gxfrac_h=gxfrac.h
  949. gxhttile_h=gxhttile.h
  950. gxhttype_h=gxhttype.h
  951. gxiodev_h=gxiodev.h $(stat__h)
  952. gxline_h=gxline.h $(gslparam_h)
  953. gxlum_h=gxlum.h
  954. gxmatrix_h=gxmatrix.h $(gsmatrix_h)
  955. gxpaint_h=gxpaint.h
  956. gxpath_h=gxpath.h $(gscpm_h) $(gslparam_h) $(gspenum_h)
  957. gxpcache_h=gxpcache.h
  958. gxpcolor_h=gxpcolor.h $(gxpcache_h)
  959. gxsample_h=gxsample.h
  960. gxstate_h=gxstate.h
  961. gxtmap_h=gxtmap.h
  962. gxxfont_h=gxxfont.h $(gsccode_h) $(gsmatrix_h) $(gsuid_h) $(gsxfont_h)
  963. # The following are out of order because they include other files.
  964. gsdcolor_h=gsdcolor.h $(gsccolor_h) $(gxarith_h) $(gxbitmap_h) $(gxcindex_h) $(gxhttile_h)
  965. gxdcolor_h=gxdcolor.h $(gscsel_h) $(gsdcolor_h) $(gsropt_h) $(gsstruct_h)
  966. gxdevice_h=gxdevice.h $(gsdcolor_h) $(gsiparam_h) $(gsmatrix_h) \
  967.   $(gsropt_h) $(gsstruct_h) $(gsxfont_h) \
  968.   $(gxbitmap_h) $(gxcindex_h) $(gxcvalue_h) $(gxfixed_h)
  969. gxdht_h=gxdht.h $(gsrefct_h) $(gxarith_h) $(gxhttype_h)
  970. gxctable_h=gxctable.h $(gxfixed_h) $(gxfrac_h)
  971. gscie_h=gscie.h $(gsrefct_h) $(gxctable_h)
  972. gscsepr_h=gscsepr.h
  973. gscspace_h=gscspace.h
  974. gxdcconv_h=gxdcconv.h $(gxfrac_h)
  975. gxfmap_h=gxfmap.h $(gsrefct_h) $(gxfrac_h) $(gxtmap_h)
  976. gxistate_h=gxistate.h $(gscsel_h) $(gsropt_h) $(gxcvalue_h) $(gxfixed_h) $(gxline_h) $(gxmatrix_h) $(gxtmap_h)
  977. gxclist_h=gxclist.h $(gscspace_h) $(gxbcache_h) $(gxclio_h) $(gxistate_h)
  978. gxcmap_h=gxcmap.h $(gscsel_h) $(gxcvalue_h) $(gxfmap_h)
  979. gxcspace_h=gxcspace.h $(gscspace_h) $(gsccolor_h) $(gscsel_h) $(gsstruct_h) $(gxfrac_h)
  980. gxht_h=gxht.h $(gsht1_h) $(gsrefct_h) $(gxhttype_h) $(gxtmap_h)
  981. gscolor_h=gscolor.h $(gxtmap_h)
  982. gsstate_h=gsstate.h $(gscolor_h) $(gscsel_h) $(gsdevice_h) $(gsht_h) $(gsline_h)
  983.  
  984. gzacpath_h=gzacpath.h
  985. gzcpath_h=gzcpath.h $(gxcpath_h)
  986. gzht_h=gzht.h $(gscsel_h) $(gxdht_h) $(gxfmap_h) $(gxht_h) $(gxhttile_h)
  987. gzline_h=gzline.h $(gxline_h)
  988. gzpath_h=gzpath.h $(gsstruct_h) $(gxpath_h)
  989. gzstate_h=gzstate.h $(gscpm_h) $(gsstate_h) $(gxdcolor_h) $(gxistate_h) $(gxstate_h)
  990.  
  991. gdevprn_h=gdevprn.h $(memory__h) $(string__h) $(gx_h) \
  992.   $(gserrors_h) $(gsmatrix_h) $(gsparam_h) $(gsutil_h) \
  993.   $(gxdevice_h) $(gxdevmem_h) $(gxclist_h)
  994.  
  995. sa85x_h=sa85x.h
  996. sbtx_h=sbtx.h
  997. scanchar_h=scanchar.h
  998. scommon_h=scommon.h $(gsmemory_h) $(gstypes_h) $(gsstruct_h)
  999. sdct_h=sdct.h
  1000. shc_h=shc.h $(gsbittab_h)
  1001. siscale_h=siscale.h $(gconfigv_h)
  1002. sjpeg_h=sjpeg.h
  1003. slzwx_h=slzwx.h
  1004. spcxx_h=spcxx.h
  1005. spdiffx_h=spdiffx.h
  1006. spngpx_h=spngpx.h
  1007. srlx_h=srlx.h
  1008. sstring_h=sstring.h
  1009. strimpl_h=strimpl.h $(scommon_h) $(gstypes_h) $(gsstruct_h)
  1010. szlibx_h=szlibx.h
  1011. # Out of order
  1012. scf_h=scf.h $(shc_h)
  1013. scfx_h=scfx.h $(shc_h)
  1014. gximage_h=gximage.h $(gsiparam_h) $(gxcspace_h) $(gxdda_h) $(gxsample_h)\
  1015.  $(siscale_h) $(strimpl_h)
  1016.  
  1017. ### Executable code
  1018.  
  1019. # gconfig and gscdefs are handled specially.  Currently they go in psbase
  1020. # rather than in libcore, which is clearly wrong.
  1021. gconfig=gconfig$(CONFIG)
  1022. $(gconfig).$(OBJ): gconf.c $(GX) \
  1023.   $(gscdefs_h) $(gconfig_h) $(gxdevice_h) $(gxiodev_h) $(MAKEFILE)
  1024.     $(RM_) gconfig.h
  1025.     $(RM_) $(gconfig).c
  1026.     $(CP_) $(gconfig_h) gconfig.h
  1027.     $(CP_) $(srcdir)/gconf.c $(gconfig).c
  1028.     $(CCC) -I. -I$(srcdir) $(gconfig).c
  1029.     $(RM_) gconfig.h
  1030.     $(RM_) $(gconfig).c
  1031.  
  1032. gscdefs=gscdefs$(CONFIG)
  1033. $(gscdefs).$(OBJ): gscdef.c $(stdpre_h) $(gscdefs_h) $(gconfig_h) $(MAKEFILE)
  1034.     $(RM_) gconfig.h
  1035.     $(RM_) $(gscdefs).c
  1036.     $(CP_) $(gconfig_h) gconfig.h
  1037.     $(CP_) $(srcdir)/gscdef.c $(gscdefs).c
  1038.     $(CCC) -I. -I$(srcdir) $(gscdefs).c
  1039.     $(RM_) gconfig.h
  1040.     $(RM_) $(gscdefs).c
  1041.  
  1042. gxacpath.$(OBJ): gxacpath.c $(GXERR) \
  1043.   $(gsdcolor_h) $(gsrop_h) $(gsstruct_h) $(gsutil_h) \
  1044.   $(gxdevice_h) $(gxfixed_h) $(gxpaint_h) \
  1045.   $(gzacpath_h) $(gzcpath_h) $(gzpath_h)
  1046.  
  1047. gxbcache.$(OBJ): gxbcache.c $(GX) $(memory__h) \
  1048.   $(gsmdebug_h) $(gxbcache_h)
  1049.  
  1050. gxccache.$(OBJ): gxccache.c $(GXERR) $(gpcheck_h) \
  1051.   $(gscspace_h) $(gsimage_h) $(gsstruct_h) \
  1052.   $(gxchar_h) $(gxdevice_h) $(gxdevmem_h) $(gxfcache_h) \
  1053.   $(gxfixed_h) $(gxfont_h) $(gxhttile_h) $(gxmatrix_h) $(gxxfont_h) \
  1054.   $(gzstate_h) $(gzpath_h) $(gzcpath_h) 
  1055.  
  1056. gxccman.$(OBJ): gxccman.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1057.  $(gsbitops_h) $(gsstruct_h) $(gsutil_h) $(gxfixed_h) $(gxmatrix_h)\
  1058.  $(gxdevice_h) $(gxdevmem_h) $(gxfont_h) $(gxfcache_h) $(gxchar_h)\
  1059.  $(gxxfont_h) $(gzstate_h) $(gzpath_h)
  1060.  
  1061. gxcht.$(OBJ): gxcht.c $(GXERR) $(memory__h)\
  1062.  $(gsutil_h)\
  1063.  $(gxcmap_h) $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxistate_h)\
  1064.  $(gxmatrix_h) $(gzht_h)
  1065.  
  1066. gxcmap.$(OBJ): gxcmap.c $(GXERR) \
  1067.   $(gsccolor_h) \
  1068.   $(gxcmap_h) $(gxcspace_h) $(gxdcconv_h) $(gxdevice_h) $(gxdither_h) \
  1069.   $(gxfarith_h) $(gxfrac_h) $(gxlum_h) $(gzstate_h)
  1070.  
  1071. gxcpath.$(OBJ): gxcpath.c $(GXERR)\
  1072.  $(gscoord_h) $(gsstruct_h) $(gsutil_h)\
  1073.  $(gxdevice_h) $(gxfixed_h) $(gzpath_h) $(gzcpath_h)
  1074.  
  1075. gxdcconv.$(OBJ): gxdcconv.c $(GX) \
  1076.   $(gsdcolor_h) $(gxcmap_h) $(gxdcconv_h) $(gxdevice_h) \
  1077.   $(gxfarith_h) $(gxistate_h) $(gxlum_h)
  1078.  
  1079. gxdcolor.$(OBJ): gxdcolor.c $(GX) \
  1080.   $(gsbittab_h) $(gxdcolor_h) $(gxdevice_h)
  1081.  
  1082. gxdither.$(OBJ): gxdither.c $(GX) \
  1083.   $(gsstruct_h) $(gsdcolor_h) \
  1084.   $(gxcmap_h) $(gxdevice_h) $(gxdither_h) $(gxlum_h) $(gzht_h)
  1085.  
  1086. gxfill.$(OBJ): gxfill.c $(GXERR) $(math__h) \
  1087.   $(gsstruct_h) \
  1088.   $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxhttile_h) \
  1089.   $(gxistate_h) $(gxpaint_h) \
  1090.   $(gzcpath_h) $(gzpath_h)
  1091.  
  1092. gxht.$(OBJ): gxht.c $(GXERR) $(memory__h)\
  1093.  $(gsbitops_h) $(gsstruct_h) $(gsutil_h)\
  1094.  $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxistate_h) $(gzht_h)
  1095.  
  1096. gximage.$(OBJ): gximage.c $(GXERR) $(math__h) $(memory__h) $(gpcheck_h)\
  1097.  $(gsccolor_h) $(gspaint_h) $(gsstruct_h)\
  1098.  $(gxfixed_h) $(gxfrac_h) $(gxarith_h) $(gxmatrix_h)\
  1099.  $(gxdevice_h) $(gzpath_h) $(gzstate_h)\
  1100.  $(gzcpath_h) $(gxdevmem_h) $(gximage_h) $(gdevmrop_h)
  1101.  
  1102. gximage0.$(OBJ): gximage0.c $(GXERR) $(memory__h)\
  1103.  $(gxcpath_h) $(gxdevice_h) $(gximage_h)
  1104.  
  1105. gximage1.$(OBJ): gximage1.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1106.  $(gdevmem_h) $(gsbittab_h) $(gsccolor_h) $(gspaint_h) $(gsutil_h)\
  1107.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1108.  $(gxdevmem_h) $(gxfixed_h) $(gximage_h) $(gxistate_h) $(gxmatrix_h)\
  1109.  $(gzht_h) $(gzpath_h)
  1110.  
  1111. gximage2.$(OBJ): gximage2.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1112.  $(gdevmem_h) $(gsccolor_h) $(gspaint_h) $(gsutil_h)\
  1113.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1114.  $(gxdevmem_h) $(gxfixed_h) $(gximage_h) $(gxistate_h) $(gxmatrix_h)\
  1115.  $(gzht_h) $(gzpath_h)
  1116.  
  1117. gxpaint.$(OBJ): gxpaint.c $(GX) \
  1118.   $(gxdevice_h) $(gxhttile_h) $(gxpaint_h) $(gxpath_h) $(gzstate_h)
  1119.  
  1120. gxpath.$(OBJ): gxpath.c $(GXERR) \
  1121.   $(gsstruct_h) $(gxfixed_h) $(gzpath_h)
  1122.  
  1123. gxpath2.$(OBJ): gxpath2.c $(GXERR) $(math__h) \
  1124.   $(gxfixed_h) $(gxarith_h) $(gzpath_h)
  1125.  
  1126. gxpcopy.$(OBJ): gxpcopy.c $(GXERR) $(math__h) $(gconfigv_h) \
  1127.   $(gxfarith_h) $(gxfixed_h) $(gzpath_h)
  1128.  
  1129. gxpdash.$(OBJ): gxpdash.c $(GX) $(math__h) \
  1130.   $(gscoord_h) $(gsline_h) $(gsmatrix_h) \
  1131.   $(gxfixed_h) $(gzline_h) $(gzpath_h)
  1132.  
  1133. gxpflat.$(OBJ): gxpflat.c $(GX)\
  1134.  $(gxarith_h) $(gxfixed_h) $(gzpath_h)
  1135.  
  1136. gxsample.$(OBJ): gxsample.c $(GX)\
  1137.  $(gxsample_h)
  1138.  
  1139. gxstroke.$(OBJ): gxstroke.c $(GXERR) $(math__h) $(gpcheck_h) \
  1140.   $(gscoord_h) $(gsdcolor_h) $(gsdevice_h) \
  1141.   $(gxdevice_h) $(gxfarith_h) $(gxfixed_h) \
  1142.   $(gxhttile_h) $(gxistate_h) $(gxmatrix_h) $(gxpaint_h) \
  1143.   $(gzcpath_h) $(gzline_h) $(gzpath_h)
  1144.  
  1145. ###### Higher-level facilities
  1146.  
  1147. gschar.$(OBJ): gschar.c $(GXERR) $(memory__h) $(string__h)\
  1148.  $(gspath_h) $(gsstruct_h) \
  1149.  $(gxfixed_h) $(gxarith_h) $(gxmatrix_h) $(gxcoord_h) $(gxdevice_h) $(gxdevmem_h) \
  1150.  $(gxfont_h) $(gxfont0_h) $(gxchar_h) $(gxfcache_h) $(gzpath_h) $(gzstate_h)
  1151.  
  1152. gscolor.$(OBJ): gscolor.c $(GXERR) \
  1153.   $(gsccolor_h) $(gsstruct_h) $(gsutil_h) \
  1154.   $(gxcmap_h) $(gxcspace_h) $(gxdcconv_h) $(gxdevice_h) $(gzstate_h)
  1155.  
  1156. gscoord.$(OBJ): gscoord.c $(GXERR) $(math__h) \
  1157.   $(gsccode_h) $(gxcoord_h) $(gxdevice_h) $(gxfarith_h) $(gxfixed_h) $(gxfont_h) \
  1158.   $(gxmatrix_h) $(gxpath_h) $(gzstate_h)
  1159.  
  1160. gsdevice.$(OBJ): gsdevice.c $(GXERR) $(memory__h)\
  1161.  $(gscdefs_h) $(gscoord_h) $(gsmatrix_h) $(gspaint_h) $(gspath_h) $(gsstruct_h)\
  1162.  $(gxcmap_h) $(gxdevice_h) $(gxdevmem_h) $(gzstate_h)
  1163.  
  1164. gsdevmem.$(OBJ): gsdevmem.c $(GXERR) $(math__h) $(memory__h) \
  1165.   $(gxarith_h) $(gxdevice_h) $(gxdevmem_h)
  1166.  
  1167. gsdparam.$(OBJ): gsdparam.c $(GXERR) $(memory__h) $(string__h) \
  1168.   $(gsparam_h) $(gxdevice_h) $(gxfixed_h)
  1169.  
  1170. gsfont.$(OBJ): gsfont.c $(GXERR) $(memory__h)\
  1171.  $(gschar_h) $(gsstruct_h) \
  1172.  $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) $(gxfont_h) $(gxfcache_h)\
  1173.  $(gzstate_h)
  1174.  
  1175. gsht.$(OBJ): gsht.c $(GXERR) $(memory__h)\
  1176.  $(gsstruct_h) $(gsutil_h) $(gxarith_h) $(gxdevice_h) $(gzht_h) $(gzstate_h)
  1177.  
  1178. gshtscr.$(OBJ): gshtscr.c $(GXERR) $(math__h) \
  1179.   $(gsstruct_h) $(gxarith_h) $(gxdevice_h) $(gzht_h) $(gzstate_h)
  1180.  
  1181. gsimage.$(OBJ): gsimage.c $(GXERR) $(memory__h)\
  1182.   $(gscspace_h) $(gsimage_h) $(gsmatrix_h) $(gsstruct_h) \
  1183.   $(gxarith_h) $(gxdevice_h) $(gzstate_h)
  1184.  
  1185. gsimpath.$(OBJ): gsimpath.c $(GXERR) \
  1186.   $(gsmatrix_h) $(gsstate_h) $(gspath_h)
  1187.  
  1188. gsinit.$(OBJ): gsinit.c $(memory__h) $(stdio__h) \
  1189.   $(gdebug_h) $(gp_h) $(gscdefs_h) $(gslib_h) $(gsmemory_h)
  1190.  
  1191. gsiodev.$(OBJ): gsiodev.c $(GXERR) $(errno__h) $(string__h) \
  1192.   $(gp_h) $(gsparam_h) $(gxiodev_h)
  1193.  
  1194. gsline.$(OBJ): gsline.c $(GXERR) $(math__h) $(memory__h)\
  1195.  $(gsline_h) $(gxfixed_h) $(gxmatrix_h) $(gzstate_h) $(gzline_h)
  1196.  
  1197. gsmatrix.$(OBJ): gsmatrix.c $(GXERR) $(math__h) \
  1198.   $(gxfarith_h) $(gxfixed_h) $(gxmatrix_h)
  1199.  
  1200. gspaint.$(OBJ): gspaint.c $(GXERR) $(math__h) $(gpcheck_h)\
  1201.  $(gspaint_h) $(gspath_h) $(gsropt_h)\
  1202.  $(gxcpath_h) $(gxdevmem_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) $(gxpaint_h)\
  1203.  $(gzpath_h) $(gzstate_h)
  1204.  
  1205. gsparam.$(OBJ): gsparam.c $(GXERR) $(memory__h) $(string__h)\
  1206.  $(gsparam_h) $(gsstruct_h)
  1207.  
  1208. gspath.$(OBJ): gspath.c $(GXERR) \
  1209.   $(gscoord_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) \
  1210.   $(gzcpath_h) $(gzpath_h) $(gzstate_h)
  1211.  
  1212. gsstate.$(OBJ): gsstate.c $(GXERR) $(memory__h)\
  1213.  $(gscie_h) $(gscolor2_h) $(gscoord_h) $(gspath_h) $(gsstruct_h) $(gsutil_h) \
  1214.  $(gxcmap_h) $(gxcspace_h) $(gxdevice_h) $(gxpcache_h) \
  1215.  $(gzstate_h) $(gzht_h) $(gzline_h) $(gzpath_h) $(gzcpath_h)
  1216.  
  1217. ###### The internal devices
  1218.  
  1219. ### The built-in device implementations:
  1220.  
  1221. # The bounding box device is not normally a free-standing device.
  1222. # To configure it as one for testing, change SETMOD to SETDEV, and also
  1223. # define TEST in gdevbbox.c.
  1224. bbox.dev: $(LIB_MAK) $(ECHOGS_XE) gdevbbox.$(OBJ)
  1225.     $(SETMOD) bbox gdevbbox.$(OBJ)
  1226.  
  1227. gdevbbox.$(OBJ): gdevbbox.c $(GXERR) $(math__h) $(memory__h) \
  1228.   $(gdevbbox_h) $(gsdevice_h) $(gsparam_h) \
  1229.   $(gxcpath_h) $(gxdevice_h) $(gxistate_h) $(gxpaint_h) $(gxpath_h)
  1230.  
  1231. gdevddrw.$(OBJ): gdevddrw.c $(GXERR) $(math__h) $(gpcheck_h) \
  1232.   $(gxdcolor_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h)
  1233.  
  1234. gdevdflt.$(OBJ): gdevdflt.c $(GXERR) $(gpcheck_h)\
  1235.  $(gsbittab_h) $(gsropt_h)\
  1236.  $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h)
  1237.  
  1238. gdevnfwd.$(OBJ): gdevnfwd.c $(GX) \
  1239.   $(gxdevice_h)
  1240.  
  1241. # The render/RGB device is only here as an example, but we can configure
  1242. # it as a real device for testing.
  1243. rrgb.dev: $(LIB_MAK) $(ECHOGS_XE) gdevrrgb.$(OBJ) page.dev
  1244.     $(SETPDEV) rrgb gdevrrgb.$(OBJ)
  1245.  
  1246. gdevrrgb.$(OBJ): gdevrrgb.c $(AK)\
  1247.  $(gdevprn_h)
  1248.  
  1249. ### The memory devices:
  1250.  
  1251. gdevabuf.$(OBJ): gdevabuf.c $(GXERR) $(memory__h)\
  1252.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1253.  
  1254. gdevmem.$(OBJ): gdevmem.c $(GXERR) $(memory__h)\
  1255.  $(gsstruct_h) $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1256.  
  1257. gdevm1.$(OBJ): gdevm1.c $(GX) $(memory__h) $(gsrop_h)\
  1258.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1259.  
  1260. gdevm2.$(OBJ): gdevm2.c $(GX) $(memory__h)\
  1261.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1262.  
  1263. gdevm4.$(OBJ): gdevm4.c $(GX) $(memory__h)\
  1264.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1265.  
  1266. gdevm8.$(OBJ): gdevm8.c $(GX) $(memory__h)\
  1267.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1268.  
  1269. gdevm16.$(OBJ): gdevm16.c $(GX) $(memory__h)\
  1270.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1271.  
  1272. gdevm24.$(OBJ): gdevm24.c $(GX) $(memory__h)\
  1273.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1274.  
  1275. gdevm32.$(OBJ): gdevm32.c $(GX) $(memory__h)\
  1276.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1277.  
  1278. gdevmpla.$(OBJ): gdevmpla.c $(GX) $(memory__h)\
  1279.  $(gxdevice_h) $(gxdevmem_h) $(gdevmem_h)
  1280.  
  1281. # Create a pseudo-"feature" for the entire graphics library.
  1282.  
  1283. LIB1s=gsalloc.$(OBJ) gsbitops.$(OBJ) gsbittab.$(OBJ)
  1284. LIB2s=gschar.$(OBJ) gscolor.$(OBJ) gscoord.$(OBJ) gsdevice.$(OBJ) gsdevmem.$(OBJ)
  1285. LIB3s=gsdparam.$(OBJ) gsfont.$(OBJ) gsht.$(OBJ) gshtscr.$(OBJ)
  1286. LIB4s=gsimage.$(OBJ) gsimpath.$(OBJ) gsinit.$(OBJ) gsiodev.$(OBJ)
  1287. LIB5s=gsline.$(OBJ) gsmatrix.$(OBJ) gsmemory.$(OBJ) gsmisc.$(OBJ)
  1288. LIB6s=gspaint.$(OBJ) gsparam.$(OBJ) gspath.$(OBJ) gsstate.$(OBJ) gsutil.$(OBJ)
  1289. LIB1x=gxacpath.$(OBJ) gxbcache.$(OBJ)
  1290. LIB2x=gxccache.$(OBJ) gxccman.$(OBJ) gxcht.$(OBJ) gxcmap.$(OBJ) gxcpath.$(OBJ)
  1291. LIB3x=gxdcconv.$(OBJ) gxdcolor.$(OBJ) gxdither.$(OBJ) gxfill.$(OBJ) gxht.$(OBJ)
  1292. LIB4x=gximage.$(OBJ) gximage0.$(OBJ) gximage1.$(OBJ) gximage2.$(OBJ)
  1293. LIB5x=gxpaint.$(OBJ) gxpath.$(OBJ) gxpath2.$(OBJ) gxpcopy.$(OBJ)
  1294. LIB6x=gxpdash.$(OBJ) gxpflat.$(OBJ) gxsample.$(OBJ) gxstroke.$(OBJ)
  1295. LIB1d=gdevabuf.$(OBJ) gdevddrw.$(OBJ) gdevdflt.$(OBJ) gdevnfwd.$(OBJ)
  1296. LIB2d=gdevmem.$(OBJ) gdevm1.$(OBJ) gdevm2.$(OBJ) gdevm4.$(OBJ) gdevm8.$(OBJ)
  1297. LIB3d=gdevm16.$(OBJ) gdevm24.$(OBJ) gdevm32.$(OBJ) gdevmpla.$(OBJ)
  1298. LIBs=$(LIB1s) $(LIB2s) $(LIB3s) $(LIB4s) $(LIB5s) $(LIB6s)
  1299. LIBx=$(LIB1x) $(LIB2x) $(LIB3x) $(LIB4x) $(LIB5x) $(LIB6x)
  1300. LIBd=$(LIB1d) $(LIB2d) $(LIB3d)
  1301. LIB_ALL=$(LIBs) $(LIBx) $(LIBd)
  1302. libs.dev: $(LIB_MAK) $(ECHOGS_XE) $(LIBs)
  1303.     $(EXP)echogs -w libs.dev $(LIB1s)
  1304.     $(EXP)echogs -a libs.dev $(LIB2s)
  1305.     $(EXP)echogs -a libs.dev $(LIB3s)
  1306.     $(EXP)echogs -a libs.dev $(LIB4s)
  1307.     $(EXP)echogs -a libs.dev $(LIB5s)
  1308.     $(EXP)echogs -a libs.dev $(LIB6s)
  1309.     $(ADDMOD) libs -init gscolor
  1310.  
  1311. libx.dev: $(LIB_MAK) $(ECHOGS_XE) $(LIBx)
  1312.     $(EXP)echogs -w libx.dev $(LIB1x)
  1313.     $(EXP)echogs -a libx.dev $(LIB2x)
  1314.     $(EXP)echogs -a libx.dev $(LIB3x)
  1315.     $(EXP)echogs -a libx.dev $(LIB4x)
  1316.     $(EXP)echogs -a libx.dev $(LIB5x)
  1317.     $(EXP)echogs -a libx.dev $(LIB6x)
  1318.     $(ADDMOD) libx -init gximage1 gximage2
  1319.  
  1320. libd.dev: $(LIB_MAK) $(ECHOGS_XE) $(LIBd)
  1321.     $(EXP)echogs -w libd.dev $(LIB1d)
  1322.     $(EXP)echogs -a libd.dev $(LIB2d)
  1323.     $(EXP)echogs -a libd.dev $(LIB3d)
  1324.  
  1325. # roplib shouldn't be required....
  1326. libcore.dev: $(LIB_MAK) $(ECHOGS_XE)\
  1327.   libs.dev libx.dev libd.dev iscale.dev roplib.dev
  1328.     $(SETMOD) libcore
  1329.     $(ADDMOD) libcore -dev nullpage
  1330.     $(ADDMOD) libcore -include libs libx libd iscale roplib
  1331.  
  1332. # ---------------- Stream support ---------------- #
  1333. # Currently the only thing in the library that uses this is clists.
  1334.  
  1335. stream_h=stream.h $(scommon_h)
  1336.  
  1337. stream.$(OBJ): stream.c $(AK) $(stdio__h) $(memory__h) \
  1338.   $(gdebug_h) $(gpcheck_h) $(stream_h) $(strimpl_h)
  1339.  
  1340. # ---------------- File streams ---------------- #
  1341. # Currently only the high-level drivers use these, but more drivers will
  1342. # probably use them eventually.
  1343.  
  1344. sfile_=sfx$(FILE_IMPLEMENTATION).$(OBJ)
  1345. sfile.dev: $(LIB_MAK) $(ECHOGS_XE) $(sfile_)
  1346.     $(SETMOD) sfile $(sfile_)
  1347.  
  1348. sfxstdio.$(OBJ): sfxstdio.c $(AK) $(stdio__h) $(memory__h) \
  1349.   $(gdebug_h) $(gpcheck_h) $(stream_h) $(strimpl_h)
  1350.  
  1351. sfxfd.$(OBJ): sfxfd.c $(AK) $(stdio__h) $(errno__h) $(memory__h) \
  1352.   $(gdebug_h) $(gpcheck_h) $(stream_h) $(strimpl_h)
  1353.  
  1354. sfxboth.$(OBJ): sfxboth.c sfxstdio.c sfxfd.c
  1355.  
  1356. # ---------------- CCITTFax filters ---------------- #
  1357. # These are used by clists, some drivers, and Level 2 in general.
  1358.  
  1359. cfe_=scfe.$(OBJ) scfetab.$(OBJ) shc.$(OBJ)
  1360. cfe.dev: $(LIB_MAK) $(ECHOGS_XE) $(cfe_)
  1361.     $(SETMOD) cfe $(cfe_)
  1362.  
  1363. scfe.$(OBJ): scfe.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1364.   $(scf_h) $(strimpl_h) $(scfx_h)
  1365.  
  1366. scfetab.$(OBJ): scfetab.c $(AK) $(std_h) $(scommon_h) $(scf_h)
  1367.  
  1368. shc.$(OBJ): shc.c $(AK) $(std_h) $(scommon_h) $(shc_h)
  1369.  
  1370. cfd_=scfd.$(OBJ) scfdtab.$(OBJ)
  1371. cfd.dev: $(LIB_MAK) $(ECHOGS_XE) $(cfd_)
  1372.     $(SETMOD) cfd $(cfd_)
  1373.  
  1374. scfd.$(OBJ): scfd.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1375.   $(scf_h) $(strimpl_h) $(scfx_h)
  1376.  
  1377. scfdtab.$(OBJ): scfdtab.c $(AK) $(std_h) $(scommon_h) $(scf_h)
  1378.  
  1379. # ---------------- DCT (JPEG) filters ---------------- #
  1380. # These are used by Level 2, and by the JPEG-writing driver.
  1381.  
  1382. # Common code
  1383.  
  1384. sdctc_=sdctc.$(OBJ) sjpegc.$(OBJ)
  1385.  
  1386. sdctc.$(OBJ): sdctc.c $(AK) $(stdio__h)\
  1387.  $(sdct_h) $(strimpl_h)\
  1388.  jpeglib.h
  1389.  
  1390. sjpegc.$(OBJ): sjpegc.c $(AK) $(stdio__h) $(string__h) $(gx_h)\
  1391.  $(gserrors_h) $(sjpeg_h) $(sdct_h) $(strimpl_h) \
  1392.  jerror.h jpeglib.h
  1393.  
  1394. # Encoding (compression)
  1395.  
  1396. sdcte_=$(sdctc_) sdcte.$(OBJ) sjpege.$(OBJ)
  1397. sdcte.dev: $(LIB_MAK) $(ECHOGS_XE) $(sdcte_) jpege.dev
  1398.     $(SETMOD) sdcte $(sdcte_)
  1399.     $(ADDMOD) sdcte -include jpege
  1400.  
  1401. sdcte.$(OBJ): sdcte.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1402.   $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  1403.   jerror.h jpeglib.h
  1404.  
  1405. sjpege.$(OBJ): sjpege.c $(AK) $(stdio__h) $(string__h) $(gx_h)\
  1406.  $(gserrors_h) $(sjpeg_h) $(sdct_h) $(strimpl_h) \
  1407.  jerror.h jpeglib.h
  1408.  
  1409. # Decoding (decompression)
  1410.  
  1411. sdctd_=$(sdctc_) sdctd.$(OBJ) sjpegd.$(OBJ)
  1412. sdctd.dev: $(LIB_MAK) $(ECHOGS_XE) $(sdctd_) jpegd.dev
  1413.     $(SETMOD) sdctd $(sdctd_)
  1414.     $(ADDMOD) sdctd -include jpegd
  1415.  
  1416. sdctd.$(OBJ): sdctd.c $(AK) $(memory__h) $(stdio__h) $(gdebug_h)\
  1417.   $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  1418.   jerror.h jpeglib.h
  1419.  
  1420. sjpegd.$(OBJ): sjpegd.c $(AK) $(stdio__h) $(string__h) $(gx_h)\
  1421.  $(gserrors_h) $(sjpeg_h) $(sdct_h) $(strimpl_h)\
  1422.  jerror.h jpeglib.h
  1423.  
  1424. # ---------------- LZW filters ---------------- #
  1425. # These are used by Level 2 in general.
  1426.  
  1427. slzwe_=slzwce
  1428. #slzwe_=slzwe
  1429. lzwe_=$(slzwe_).$(OBJ) slzwc.$(OBJ)
  1430. lzwe.dev: $(LIB_MAK) $(ECHOGS_XE) $(lzwe_)
  1431.     $(SETMOD) lzwe $(lzwe_)
  1432.  
  1433. # We need slzwe.dev as a synonym for lzwe.dev for BAND_LIST_STORAGE = memory.
  1434. slzwe.dev: lzwe.dev
  1435.     $(CP_) lzwe.dev slzwe.dev
  1436.  
  1437. slzwce.$(OBJ): slzwce.c $(AK) $(stdio__h) $(gdebug_h)\
  1438.   $(slzwx_h) $(strimpl_h)
  1439.  
  1440. slzwe.$(OBJ): slzwe.c $(AK) $(stdio__h) $(gdebug_h)\
  1441.   $(slzwx_h) $(strimpl_h)
  1442.  
  1443. slzwc.$(OBJ): slzwc.c $(AK) $(std_h)\
  1444.   $(slzwx_h) $(strimpl_h)
  1445.  
  1446. lzwd_=slzwd.$(OBJ) slzwc.$(OBJ)
  1447. lzwd.dev: $(LIB_MAK) $(ECHOGS_XE) $(lzwd_)
  1448.     $(SETMOD) lzwd $(lzwd_)
  1449.  
  1450. # We need slzwd.dev as a synonym for lzwd.dev for BAND_LIST_STORAGE = memory.
  1451. slzwd.dev: lzwd.dev
  1452.     $(CP_) lzwd.dev slzwd.dev
  1453.  
  1454. slzwd.$(OBJ): slzwd.c $(AK) $(stdio__h) $(gdebug_h)\
  1455.   $(slzwx_h) $(strimpl_h)
  1456.  
  1457. # ---------------- PCX decoding filter ---------------- #
  1458. # This is an adhoc filter not used by anything in the standard configuration.
  1459.  
  1460. pcxd_=spcxd.$(OBJ)
  1461. pcxd.dev: $(LIB_MAK) $(ECHOGS_XE) $(pcxd_)
  1462.     $(SETMOD) pcxd $(pcxd_)
  1463.  
  1464. spcxd.$(OBJ): spcxd.c $(AK) $(stdio__h) $(memory__h) \
  1465.   $(spcxx_h) $(strimpl_h)
  1466.  
  1467. # ---------------- Pixel-difference filters ---------------- #
  1468. # The Predictor facility of the LZW and Flate filters uses these.
  1469.  
  1470. pdiff_=spdiff.$(OBJ)
  1471. pdiff.dev: $(LIB_MAK) $(ECHOGS_XE) $(pdiff_)
  1472.     $(SETMOD) pdiff $(pdiff_)
  1473.  
  1474. spdiff.$(OBJ): spdiff.c $(AK) $(stdio__h)\
  1475.  $(spdiffx_h) $(strimpl_h)
  1476.  
  1477. # ---------------- PNG pixel prediction filters ---------------- #
  1478. # The Predictor facility of the LZW and Flate filters uses these.
  1479.  
  1480. pngp_=spngp.$(OBJ)
  1481. pngp.dev: $(LIB_MAK) $(ECHOGS_XE) $(pngp_)
  1482.     $(SETMOD) pngp $(pngp_)
  1483.  
  1484. spngp.$(OBJ): spngp.c $(AK) $(memory__h)\
  1485.   $(spngpx_h) $(strimpl_h)
  1486.  
  1487. # ---------------- RunLength filters ---------------- #
  1488. # These are used by clists and also by Level 2 in general.
  1489.  
  1490. rle_=srle.$(OBJ)
  1491. rle.dev: $(LIB_MAK) $(ECHOGS_XE) $(rle_)
  1492.     $(SETMOD) rle $(rle_)
  1493.  
  1494. srle.$(OBJ): srle.c $(AK) $(stdio__h) $(memory__h) \
  1495.   $(srlx_h) $(strimpl_h)
  1496.  
  1497. rld_=srld.$(OBJ)
  1498. rld.dev: $(LIB_MAK) $(ECHOGS_XE) $(rld_)
  1499.     $(SETMOD) rld $(rld_)
  1500.  
  1501. srld.$(OBJ): srld.c $(AK) $(stdio__h) $(memory__h) \
  1502.   $(srlx_h) $(strimpl_h)
  1503.  
  1504. # ---------------- String encoding/decoding filters ---------------- #
  1505. # These are used by the PostScript and PDF writers, and also by the
  1506. # PostScript interpreter.
  1507.  
  1508. scantab.$(OBJ): scantab.c $(AK) $(stdpre_h)\
  1509.  $(scanchar_h) $(scommon_h)
  1510.  
  1511. sfilter2.$(OBJ): sfilter2.c $(AK) $(memory__h) $(stdio__h)\
  1512.  $(sa85x_h) $(scanchar_h) $(sbtx_h) $(strimpl_h)
  1513.  
  1514. sstring.$(OBJ): sstring.c $(AK) $(stdio__h) $(memory__h) $(string__h)\
  1515.  $(scanchar_h) $(sstring_h) $(strimpl_h)
  1516.  
  1517. # ---------------- zlib filters ---------------- #
  1518. # These are used by clists and are also available as filters.
  1519.  
  1520. szlibc_=szlibc.$(OBJ)
  1521.  
  1522. szlibc.$(OBJ): szlibc.c $(AK) $(std_h) \
  1523.   $(gsmemory_h) $(gsstruct_h) $(gstypes_h) $(strimpl_h) $(szlibx_h)
  1524.     $(CCCZ) $(srcdir)/szlibc.c
  1525.  
  1526. szlibe_=$(szlibc_) szlibe.$(OBJ)
  1527. szlibe.dev: $(LIB_MAK) $(ECHOGS_XE) zlibe.dev $(szlibe_)
  1528.     $(SETMOD) szlibe $(szlibe_)
  1529.     $(ADDMOD) szlibe -include zlibe
  1530.  
  1531. szlibe.$(OBJ): szlibe.c $(AK) $(std_h) \
  1532.   $(gsmemory_h) $(strimpl_h) $(szlibx_h)
  1533.     $(CCCZ) $(srcdir)/szlibe.c
  1534.  
  1535. szlibd_=$(szlibc_) szlibd.$(OBJ)
  1536. szlibd.dev: $(LIB_MAK) $(ECHOGS_XE) zlibd.dev $(szlibd_)
  1537.     $(SETMOD) szlibd $(szlibd_)
  1538.     $(ADDMOD) szlibd -include zlibd
  1539.  
  1540. szlibd.$(OBJ): szlibd.c $(AK) $(std_h) \
  1541.   $(gsmemory_h) $(strimpl_h) $(szlibx_h)
  1542.     $(CCCZ) $(srcdir)/szlibd.c
  1543.  
  1544. # ---------------- Command lists ---------------- #
  1545.  
  1546. gxcldev_h=gxcldev.h $(gxclist_h) $(gsropt_h) $(gxht_h) $(gxtmap_h) $(gxdht_h)\
  1547.   $(strimpl_h) $(scfx_h) $(srlx_h)
  1548. gxclpage_h=gxclpage.h $(gxclio_h)
  1549. gxclpath_h=gxclpath.h $(gxfixed_h)
  1550.  
  1551. # Command list package.  Currently the higher-level facilities are required,
  1552. # but eventually they will be optional.
  1553. clist.dev: $(LIB_MAK) $(ECHOGS_XE) clbase.dev clpath.dev
  1554.     $(SETMOD) clist -include clbase clpath
  1555.  
  1556. # Base command list facility.
  1557. clbase1_=gxclist.$(OBJ) gxclbits.$(OBJ) gxclpage.$(OBJ)
  1558. clbase2_=gxclread.$(OBJ) gxclrect.$(OBJ) stream.$(OBJ)
  1559. clbase_=$(clbase1_) $(clbase2_)
  1560. clbase.dev: $(LIB_MAK) $(ECHOGS_XE) $(clbase_) cl$(BAND_LIST_STORAGE).dev \
  1561.   cfe.dev cfd.dev rle.dev rld.dev
  1562.     $(SETMOD) clbase $(clbase1_)
  1563.     $(ADDMOD) clbase -obj $(clbase2_)
  1564.     $(ADDMOD) clbase -include cl$(BAND_LIST_STORAGE) cfe cfd rle rld
  1565.  
  1566. gdevht_h=gdevht.h $(gzht_h)
  1567.  
  1568. gdevht.$(OBJ): gdevht.c $(GXERR) \
  1569.   $(gdevht_h) $(gxdcconv_h) $(gxdcolor_h) $(gxdevice_h) $(gxdither_h)
  1570.  
  1571. gxclist.$(OBJ): gxclist.c $(GXERR) $(memory__h) $(gp_h) $(gpcheck_h)\
  1572.  $(gxcldev_h) $(gxdevice_h) $(gxdevmem_h)
  1573.  
  1574. gxclbits.$(OBJ): gxclbits.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1575.  $(gsbitops_h) $(gxcldev_h) $(gxdevice_h) $(gxdevmem_h) $(gxfmap_h)
  1576.  
  1577. gxclpage.$(OBJ): gxclpage.c $(AK)\
  1578.  $(gdevprn_h) $(gxcldev_h) $(gxclpage_h)
  1579.  
  1580. # (gxclread shouldn't need gxclpath.h)
  1581. gxclread.$(OBJ): gxclread.c $(GXERR) $(memory__h) $(gp_h) $(gpcheck_h)\
  1582.  $(gdevht_h)\
  1583.  $(gsbitops_h) $(gscoord_h) $(gsdevice_h) $(gsstate_h)\
  1584.  $(gxcldev_h) $(gxclpath_h) $(gxcmap_h) $(gxcspace_h) $(gxdcolor_h)\
  1585.  $(gxdevice_h) $(gxdevmem_h)\
  1586.  $(gxhttile_h) $(gxpaint_h) $(gzacpath_h) $(gzcpath_h) $(gzpath_h)\
  1587.  $(stream_h) $(strimpl_h)
  1588.  
  1589. gxclrect.$(OBJ): gxclrect.c $(GXERR)\
  1590.  $(gsutil_h) $(gxcldev_h) $(gxdevice_h) $(gxdevmem_h)
  1591.  
  1592. # Higher-level command list facilities.
  1593. clpath_=gxclimag.$(OBJ) gxclpath.$(OBJ)
  1594. clpath.dev: $(LIB_MAK) $(ECHOGS_XE) $(clpath_) psl2cs.dev
  1595.     $(SETMOD) clpath $(clpath_)
  1596.     $(ADDMOD) clpath -include psl2cs
  1597.     $(ADDMOD) clpath -init climag clpath
  1598.  
  1599. gxclimag.$(OBJ): gxclimag.c $(GXERR) $(math__h) $(memory__h)\
  1600.  $(gscspace_h)\
  1601.  $(gxarith_h) $(gxcldev_h) $(gxclpath_h) $(gxdevice_h) $(gxdevmem_h)\
  1602.  $(gxfmap_h)\
  1603.  $(siscale_h) $(strimpl_h)
  1604.  
  1605. gxclpath.$(OBJ): gxclpath.c $(GXERR) $(math__h) $(memory__h) $(gpcheck_h)\
  1606.  $(gxcldev_h) $(gxclpath_h) $(gxcolor2_h) $(gxdevice_h) $(gxdevmem_h)\
  1607.  $(gxpaint_h) \
  1608.  $(gzcpath_h) $(gzpath_h)
  1609.  
  1610. # Implement band lists on files.
  1611.  
  1612. clfile_=gxclfile.$(OBJ)
  1613. clfile.dev: $(LIB_MAK) $(ECHOGS_XE) $(clfile_)
  1614.     $(SETMOD) clfile $(clfile_)
  1615.  
  1616. gxclfile.$(OBJ): gxclfile.c $(stdio__h) $(string__h) \
  1617.   $(gp_h) $(gsmemory_h) $(gserror_h) $(gserrors_h) $(gxclio_h)
  1618.  
  1619. # Implement band lists in memory (RAM).
  1620.  
  1621. clmemory_=gxclmem.$(OBJ) gxcl$(BAND_LIST_COMPRESSOR).$(OBJ)
  1622. clmemory.dev: $(LIB_MAK) $(ECHOGS_XE) $(clmemory_) s$(BAND_LIST_COMPRESSOR)e.dev s$(BAND_LIST_COMPRESSOR)d.dev
  1623.     $(SETMOD) clmemory $(clmemory_)
  1624.     $(ADDMOD) clmemory -include s$(BAND_LIST_COMPRESSOR)e s$(BAND_LIST_COMPRESSOR)d
  1625.     $(ADDMOD) clmemory -init cl_$(BAND_LIST_COMPRESSOR)
  1626.  
  1627. gxclmem_h=gxclmem.h $(gxclio_h) $(strimpl_h)
  1628.  
  1629. gxclmem.$(OBJ): gxclmem.c $(GXERR) $(LIB_MAK) $(memory__h) \
  1630.   $(gxclmem_h)
  1631.  
  1632. # Implement the compression method for RAM-based band lists.
  1633.  
  1634. gxcllzw.$(OBJ): gxcllzw.c $(std_h)\
  1635.  $(gsmemory_h) $(gstypes_h) $(gxclmem_h) $(slzwx_h)
  1636.  
  1637. gxclzlib.$(OBJ): gxclzlib.c $(std_h)\
  1638.  $(gsmemory_h) $(gstypes_h) $(gxclmem_h) $(szlibx_h)
  1639.     $(CCCZ) gxclzlib.c
  1640.  
  1641. # ---------------- Page devices ---------------- #
  1642. # We include this here, rather than in devs.mak, because it is more like
  1643. # a feature than a simple device.
  1644.  
  1645. page_=gdevprn.$(OBJ)
  1646. page.dev: $(LIB_MAK) $(ECHOGS_XE) $(page_) clist.dev
  1647.     $(SETMOD) page $(page_)
  1648.     $(ADDMOD) page -include clist
  1649.  
  1650. gdevprn.$(OBJ): gdevprn.c $(ctype__h) \
  1651.   $(gdevprn_h) $(gp_h) $(gsparam_h) $(gxclio_h)
  1652.  
  1653. # ---------------- Vector devices ---------------- #
  1654. # We include this here for the same reasons as page.dev.
  1655.  
  1656. gdevvec_h=gdevvec.h $(gdevbbox_h) $(gsropt_h) $(gxdevice_h) $(gxistate_h) $(stream_h)
  1657.  
  1658. vector_=gdevvec.$(OBJ)
  1659. vector.dev: $(LIB_MAK) $(ECHOGS_XE) $(vector_) bbox.dev
  1660.     $(SETMOD) vector $(vector_)
  1661.     $(ADDMOD) vector -include bbox
  1662.  
  1663. gdevvec.$(OBJ): gdevvec.c $(GXERR) $(math__h) $(memory__h) $(string__h)\
  1664.  $(gdevvec_h) $(gp_h) $(gscspace_h) $(gsparam_h) $(gsutil_h)\
  1665.  $(gxdcolor_h) $(gxfixed_h) $(gxpaint_h)\
  1666.  $(gzcpath_h) $(gzpath_h)
  1667.  
  1668. # ---------------- Image scaling filter ---------------- #
  1669.  
  1670. iscale_=siscale.$(OBJ)
  1671. iscale.dev: $(LIB_MAK) $(ECHOGS_XE) $(iscale_)
  1672.     $(SETMOD) iscale $(iscale_)
  1673.  
  1674. siscale.$(OBJ): siscale.c $(AK) $(math__h) $(memory__h) $(stdio__h) \
  1675.   $(siscale_h) $(strimpl_h)
  1676.  
  1677. # ---------------- RasterOp et al ---------------- #
  1678. # Currently this module is required, but it should be optional.
  1679.  
  1680. roplib_=gdevmrop.$(OBJ) gsrop.$(OBJ) gsroptab.$(OBJ)
  1681. roplib.dev: $(LIB_MAK) $(ECHOGS_XE) $(roplib_)
  1682.     $(SETMOD) roplib $(roplib_)
  1683.     $(ADDMOD) roplib -init roplib
  1684.  
  1685. gdevrun.$(OBJ): gdevrun.c $(GXERR) $(memory__h) \
  1686.   $(gxdevice_h) $(gxdevmem_h)
  1687.  
  1688. gdevmrop.$(OBJ): gdevmrop.c $(GXERR) $(memory__h) \
  1689.   $(gsbittab_h) $(gsropt_h) \
  1690.   $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h) $(gxdevrop_h) \
  1691.   $(gdevmrop_h)
  1692.  
  1693. gsrop.$(OBJ): gsrop.c $(GXERR) \
  1694.   $(gsrop_h) $(gzstate_h)
  1695.  
  1696. gsroptab.$(OBJ): gsroptab.c $(stdpre_h) $(gsropt_h)
  1697.     $(CCLEAF) $(srcdir)/gsroptab.c
  1698.  
  1699. # -------- Composite (PostScript Type 0) font support -------- #
  1700.  
  1701. cmaplib_=gsfcmap.$(OBJ)
  1702. cmaplib.dev: $(LIB_MAK) $(ECHOGS_XE) $(cmaplib_)
  1703.     $(SETMOD) cmaplib $(cmaplib_)
  1704.  
  1705. gsfcmap.$(OBJ): gsfcmap.c $(GXERR)\
  1706.  $(gsstruct_h) $(gxfcmap_h)
  1707.  
  1708. psf0lib_=gschar0.$(OBJ) gsfont0.$(OBJ)
  1709. psf0lib.dev: $(LIB_MAK) $(ECHOGS_XE) cmaplib.dev $(psf0lib_)
  1710.     $(SETMOD) psf0lib $(psf0lib_)
  1711.     $(ADDMOD) psf0lib -include cmaplib
  1712.  
  1713. gschar0.$(OBJ): gschar0.c $(GXERR) $(memory__h)\
  1714.  $(gsstruct_h) $(gxfixed_h) $(gxdevice_h) $(gxdevmem_h)\
  1715.  $(gsfcmap_h) $(gxfont_h) $(gxfont0_h) $(gxchar_h)
  1716.  
  1717. gsfont0.$(OBJ): gsfont0.c $(GXERR) $(memory__h)\
  1718.  $(gsmatrix_h) $(gsstruct_h) $(gxfixed_h) $(gxdevmem_h) $(gxfcache_h)\
  1719.  $(gxfont_h) $(gxfont0_h) $(gxchar_h) $(gxdevice_h)
  1720.  
  1721. # ---------------- Pattern color ---------------- #
  1722.  
  1723. patlib_=gspcolor.$(OBJ) gxclip2.$(OBJ) gxpcmap.$(OBJ)
  1724. patlib.dev: $(LIB_MAK) $(ECHOGS_XE) cmyklib.dev psl2cs.dev $(patlib_)
  1725.     $(SETMOD) patlib -include cmyklib psl2cs
  1726.     $(ADDMOD) patlib -obj $(patlib_)
  1727.  
  1728. gspcolor.$(OBJ): gspcolor.c $(GXERR) $(math__h) \
  1729.   $(gsimage_h) $(gspath_h) $(gsrop_h) $(gsstruct_h) $(gsutil_h) \
  1730.   $(gxarith_h) $(gxcolor2_h) $(gxcoord_h) $(gxclip2_h) $(gxcspace_h) \
  1731.   $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h) \
  1732.   $(gxfixed_h) $(gxmatrix_h) $(gxpath_h) $(gxpcolor_h) $(gzstate_h)
  1733.  
  1734. gxclip2.$(OBJ): gxclip2.c $(GXERR) $(memory__h) \
  1735.   $(gsstruct_h) $(gxclip2_h) $(gxdevice_h) $(gxdevmem_h)
  1736.  
  1737. gxpcmap.$(OBJ): gxpcmap.c $(GXERR) $(math__h) $(memory__h)\
  1738.  $(gsstruct_h) $(gsutil_h)\
  1739.  $(gxcolor2_h) $(gxcspace_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h)\
  1740.  $(gxfixed_h) $(gxmatrix_h) $(gxpcolor_h)\
  1741.  $(gzcpath_h) $(gzpath_h) $(gzstate_h)
  1742.  
  1743. # ---------------- PostScript Type 1 (and Type 4) fonts ---------------- #
  1744.  
  1745. type1lib_=gxtype1.$(OBJ) gxhint1.$(OBJ) gxhint2.$(OBJ) gxhint3.$(OBJ)
  1746.  
  1747. gscrypt1_h=gscrypt1.h
  1748. gstype1_h=gstype1.h
  1749. gxfont1_h=gxfont1.h
  1750. gxop1_h=gxop1.h
  1751. gxtype1_h=gxtype1.h $(gscrypt1_h) $(gstype1_h) $(gxop1_h)
  1752.  
  1753. gxtype1.$(OBJ): gxtype1.c $(GXERR) $(math__h)\
  1754.  $(gsccode_h) $(gsline_h) $(gsstruct_h)\
  1755.  $(gxarith_h) $(gxcoord_h) $(gxfixed_h) $(gxmatrix_h)\
  1756.  $(gxfont_h) $(gxfont1_h) $(gxistate_h) $(gxtype1_h)\
  1757.  $(gzpath_h)
  1758.  
  1759. gxhint1.$(OBJ): gxhint1.c $(GXERR)\
  1760.  $(gxarith_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1761.  $(gxfont_h) $(gxfont1_h) $(gxtype1_h)
  1762.  
  1763. gxhint2.$(OBJ): gxhint2.c $(GXERR) $(memory__h)\
  1764.  $(gxarith_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1765.  $(gxfont_h) $(gxfont1_h) $(gxtype1_h)
  1766.  
  1767. gxhint3.$(OBJ): gxhint3.c $(GXERR) $(math__h)\
  1768.  $(gxarith_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1769.  $(gxfont_h) $(gxfont1_h) $(gxtype1_h)\
  1770.  $(gzpath_h)
  1771.  
  1772. # Type 1 charstrings
  1773.  
  1774. psf1lib_=gstype1.$(OBJ)
  1775. psf1lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(psf1lib_) $(type1lib_)
  1776.     $(SETMOD) psf1lib $(psf1lib_)
  1777.     $(ADDMOD) psf1lib $(type1lib_)
  1778.     $(ADDMOD) psf1lib -init gstype1
  1779.  
  1780. gstype1.$(OBJ): gstype1.c $(GXERR) $(math__h) $(memory__h)\
  1781.  $(gsstruct_h)\
  1782.  $(gxarith_h) $(gxcoord_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1783.  $(gxfont_h) $(gxfont1_h) $(gxistate_h) $(gxtype1_h)\
  1784.  $(gzpath_h)
  1785.  
  1786. # Type 2 charstrings
  1787.  
  1788. psf2lib_=gstype2.$(OBJ)
  1789. psf2lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(psf2lib_) $(type1lib_)
  1790.     $(SETMOD) psf2lib $(psf2lib_)
  1791.     $(ADDMOD) psf2lib $(type1lib_)
  1792.     $(ADDMOD) psf2lib -init gstype2
  1793.  
  1794. gstype2.$(OBJ): gstype2.c $(GXERR) $(math__h) $(memory__h)\
  1795.  $(gsstruct_h)\
  1796.  $(gxarith_h) $(gxcoord_h) $(gxfixed_h) $(gxmatrix_h) $(gxchar_h)\
  1797.  $(gxfont_h) $(gxfont1_h) $(gxistate_h) $(gxtype1_h)\
  1798.  $(gzpath_h)
  1799.  
  1800. # ---------------- TrueType and PostScript Type 42 fonts ---------------- #
  1801.  
  1802. ttflib_=gstype42.$(OBJ)
  1803. ttflib.dev: $(LIB_MAK) $(ECHOGS_XE) $(ttflib_)
  1804.     $(SETMOD) ttflib $(ttflib_)
  1805.  
  1806. gxfont42_h=gxfont42.h
  1807.  
  1808. gstype42.$(OBJ): gstype42.c $(GXERR) $(memory__h) \
  1809.   $(gsccode_h) $(gsmatrix_h) $(gsstruct_h) \
  1810.   $(gxfixed_h) $(gxfont_h) $(gxfont42_h) $(gxistate_h) $(gxpath_h)
  1811.  
  1812. # -------- Level 1 color extensions (CMYK color and colorimage) -------- #
  1813.  
  1814. cmyklib_=gscolor1.$(OBJ) gsht1.$(OBJ)
  1815. cmyklib.dev: $(LIB_MAK) $(ECHOGS_XE) $(cmyklib_)
  1816.     $(SETMOD) cmyklib $(cmyklib_)
  1817.     $(ADDMOD) cmyklib -init gscolor1
  1818.  
  1819. gscolor1.$(OBJ): gscolor1.c $(GXERR) \
  1820.   $(gsccolor_h) $(gscolor1_h) $(gsstruct_h) $(gsutil_h) \
  1821.   $(gxcmap_h) $(gxcspace_h) $(gxdcconv_h) $(gxdevice_h) \
  1822.   $(gzstate_h)
  1823.  
  1824. gsht1.$(OBJ): gsht1.c $(GXERR) $(memory__h)\
  1825.  $(gsstruct_h) $(gsutil_h) $(gxdevice_h) $(gzht_h) $(gzstate_h)
  1826.  
  1827. colimlib_=gximage3.$(OBJ)
  1828. colimlib.dev: $(LIB_MAK) $(ECHOGS_XE) $(colimlib_)
  1829.     $(SETMOD) colimlib $(colimlib_)
  1830.     $(ADDMOD) colimlib -init gximage3
  1831.  
  1832. gximage3.$(OBJ): gximage3.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1833.  $(gsccolor_h) $(gspaint_h)\
  1834.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcconv_h) $(gxdcolor_h)\
  1835.  $(gxdevice_h) $(gxdevmem_h) $(gxfixed_h) $(gxfrac_h)\
  1836.  $(gximage_h) $(gxistate_h) $(gxmatrix_h)\
  1837.  $(gzpath_h) $(gzstate_h)
  1838.  
  1839. # ---------------- HSB color ---------------- #
  1840.  
  1841. hsblib_=gshsb.$(OBJ)
  1842. hsblib.dev: $(LIB_MAK) $(ECHOGS_XE) $(hsblib_)
  1843.     $(SETMOD) hsblib $(hsblib_)
  1844.  
  1845. gshsb.$(OBJ): gshsb.c $(GX) \
  1846.   $(gscolor_h) $(gshsb_h) $(gxfrac_h)
  1847.  
  1848. # ---- Level 1 path miscellany (arcs, pathbbox, path enumeration) ---- #
  1849.  
  1850. path1lib_=gspath1.$(OBJ)
  1851. path1lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(path1lib_)
  1852.     $(SETMOD) path1lib $(path1lib_)
  1853.  
  1854. gspath1.$(OBJ): gspath1.c $(GXERR) $(math__h) \
  1855.   $(gscoord_h) $(gspath_h) $(gsstruct_h) \
  1856.   $(gxfarith_h) $(gxfixed_h) $(gxmatrix_h) \
  1857.   $(gzstate_h) $(gzpath_h)
  1858.  
  1859. # --------------- Level 2 color space and color image support --------------- #
  1860.  
  1861. psl2cs_=gscolor2.$(OBJ)
  1862. psl2cs.dev: $(LIB_MAK) $(ECHOGS_XE) $(psl2cs_)
  1863.     $(SETMOD) psl2cs $(psl2cs_)
  1864.  
  1865. gscolor2.$(OBJ): gscolor2.c $(GXERR) \
  1866.   $(gxarith_h) $(gxcolor2_h) $(gxcspace_h) $(gxfixed_h) $(gxmatrix_h) \
  1867.   $(gzstate_h)
  1868.  
  1869. psl2lib_=gximage4.$(OBJ) gximage5.$(OBJ)
  1870. psl2lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(psl2lib_) colimlib.dev psl2cs.dev
  1871.     $(SETMOD) psl2lib $(psl2lib_)
  1872.     $(ADDMOD) psl2lib -init gximage4 gximage5
  1873.     $(ADDMOD) psl2lib -include colimlib psl2cs
  1874.  
  1875. gximage4.$(OBJ): gximage4.c $(GXERR) $(memory__h) $(gpcheck_h)\
  1876.  $(gsccolor_h) $(gspaint_h)\
  1877.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1878.  $(gxdevmem_h) $(gxfixed_h) $(gxfrac_h) $(gximage_h) $(gxistate_h)\
  1879.  $(gxmatrix_h)\
  1880.  $(gzpath_h)
  1881.  
  1882. gximage5.$(OBJ): gximage5.c $(GXERR) $(math__h) $(memory__h) $(gpcheck_h)\
  1883.  $(gsccolor_h) $(gspaint_h)\
  1884.  $(gxarith_h) $(gxcmap_h) $(gxcpath_h) $(gxdcolor_h) $(gxdevice_h)\
  1885.  $(gxdevmem_h) $(gxfixed_h) $(gxfrac_h) $(gximage_h) $(gxistate_h)\
  1886.  $(gxmatrix_h)\
  1887.  $(gzpath_h)
  1888.  
  1889. # ---------------- Display Postscript / Level 2 support ---------------- #
  1890.  
  1891. dps2lib_=gsdps1.$(OBJ)
  1892. dps2lib.dev: $(LIB_MAK) $(ECHOGS_XE) $(dps2lib_)
  1893.     $(SETMOD) dps2lib $(dps2lib_)
  1894.  
  1895. gsdps1.$(OBJ): gsdps1.c $(GXERR) $(math__h)\
  1896.  $(gscoord_h) $(gsmatrix_h) $(gspaint_h) $(gspath_h) $(gspath2_h)\
  1897.  $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) $(gzcpath_h) $(gzpath_h) $(gzstate_h)
  1898.  
  1899. # ---------------- CIE color ---------------- #
  1900.  
  1901. cielib_=gscie.$(OBJ) gxctable.$(OBJ)
  1902. cielib.dev: $(LIB_MAK) $(ECHOGS_XE) $(cielib_)
  1903.     $(SETMOD) cielib $(cielib_)
  1904.  
  1905. gscie.$(OBJ): gscie.c $(GXERR) $(math__h) \
  1906.   $(gscie_h) $(gscolor2_h) $(gsmatrix_h) $(gsstruct_h) \
  1907.   $(gxarith_h) $(gxcmap_h) $(gxcspace_h) $(gxdevice_h) $(gzstate_h)
  1908.  
  1909. gxctable.$(OBJ): gxctable.c $(GX) \
  1910.   $(gxfixed_h) $(gxfrac_h) $(gxctable_h)
  1911.  
  1912. # ---------------- Separation colors ---------------- #
  1913.  
  1914. seprlib_=gscsepr.$(OBJ)
  1915. seprlib.dev: $(LIB_MAK) $(ECHOGS_XE) $(seprlib_)
  1916.     $(SETMOD) seprlib $(seprlib_)
  1917.  
  1918. gscsepr.$(OBJ): gscsepr.c $(GXERR)\
  1919.  $(gscsepr_h) $(gsmatrix_h) $(gsrefct_h)\
  1920.  $(gxcolor2_h) $(gxcspace_h) $(gxfixed_h) $(gzstate_h)
  1921.  
  1922. # ----------------------- Platform-specific modules ----------------------- #
  1923. # Platform-specific code doesn't really belong here: this is code that is
  1924. # shared among multiple platforms.
  1925.  
  1926. # Frame buffer implementations.
  1927.  
  1928. gp_nofb.$(OBJ): gp_nofb.c $(GX) \
  1929.   $(gp_h) $(gxdevice_h)
  1930.  
  1931. gp_dosfb.$(OBJ): gp_dosfb.c $(AK) $(malloc__h) $(memory__h)\
  1932.  $(gx_h) $(gp_h) $(gserrors_h) $(gxdevice_h)
  1933.  
  1934. # MS-DOS file system, also used by Desqview/X.
  1935. gp_dosfs.$(OBJ): gp_dosfs.c $(AK) $(dos__h) $(gp_h) $(gx_h)
  1936.  
  1937. # MS-DOS file enumeration, *not* used by Desqview/X.
  1938. gp_dosfe.$(OBJ): gp_dosfe.c $(AK) $(stdio__h) $(memory__h) $(string__h) \
  1939.   $(dos__h) $(gstypes_h) $(gsmemory_h) $(gsstruct_h) $(gp_h) $(gsutil_h)
  1940.  
  1941. # Other MS-DOS facilities.
  1942. gp_msdos.$(OBJ): gp_msdos.c $(AK) $(dos__h) $(stdio__h) $(string__h)\
  1943.  $(gsmemory_h) $(gstypes_h) $(gp_h)
  1944.  
  1945. # Unix(-like) file system, also used by Desqview/X.
  1946. gp_unifs.$(OBJ): gp_unifs.c $(AK) $(memory__h) $(string__h) $(gx_h) $(gp_h) \
  1947.   $(gsstruct_h) $(gsutil_h) $(stat__h) $(dirent__h)
  1948.  
  1949. # Unix(-like) file name syntax, *not* used by Desqview/X.
  1950. gp_unifn.$(OBJ): gp_unifn.c $(AK) $(gx_h) $(gp_h)
  1951.  
  1952. # Misc Libnix Amiga stuff
  1953. #modf.$(OBJ): modf.c
  1954. #frexp.$(OBJ): frexp.c
  1955. #ldexp.$(OBJ): ldexp.c
  1956.  
  1957. # ----------------------------- Main program ------------------------------ #
  1958.  
  1959. # Main program for library testing
  1960.  
  1961. gslib.$(OBJ): gslib.c $(AK) $(math__h) \
  1962.   $(gx_h) $(gp_h) $(gserrors_h) $(gsmatrix_h) $(gsstate_h) $(gscspace_h) \
  1963.   $(gscdefs_h) $(gscolor2_h) $(gscoord_h) $(gslib_h) $(gsparam_h) \
  1964.   $(gspaint_h) $(gspath_h) $(gsstruct_h) $(gsutil_h) \
  1965.   $(gxalloc_h) $(gxdevice_h)
  1966. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  1967. # This file is part of Aladdin Ghostscript.
  1968. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  1969. # or distributor accepts any responsibility for the consequences of using it,
  1970. # or for whether it serves any particular purpose or works at all, unless he
  1971. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  1972. # License (the "License") for full details.
  1973. # Every copy of Aladdin Ghostscript must include a copy of the License,
  1974. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  1975. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  1976. # under certain conditions described in the License.  Among other things, the
  1977. # License requires that the copyright notice and this notice be preserved on
  1978. # all copies.
  1979.  
  1980. # (Platform-independent) makefile for language interpreters.
  1981. # See the end of gs.mak for where this fits into the build process.
  1982.  
  1983. # Define the name of this makefile.
  1984. INT_MAK=int.mak
  1985.  
  1986. # ======================== Interpreter support ======================== #
  1987.  
  1988. # This is support code for all interpreters, not just PostScript and PDF.
  1989. # It knows about the PostScript data types, but isn't supposed to
  1990. # depend on anything outside itself.
  1991.  
  1992. errors_h=errors.h
  1993. idebug_h=idebug.h
  1994. idict_h=idict.h
  1995. igc_h=igc.h
  1996. igcstr_h=igcstr.h
  1997. iname_h=iname.h
  1998. inamedef_h=inamedef.h $(gconfigv_h) $(iname_h)
  1999. ipacked_h=ipacked.h
  2000. iref_h=iref.h
  2001. isave_h=isave.h
  2002. isstate_h=isstate.h
  2003. istruct_h=istruct.h $(gsstruct_h)
  2004. iutil_h=iutil.h
  2005. ivmspace_h=ivmspace.h $(gsgc_h)
  2006. opdef_h=opdef.h
  2007. # Nested include files
  2008. ghost_h=ghost.h $(gx_h) $(iref_h)
  2009. imemory_h=imemory.h $(gsalloc_h) $(ivmspace_h)
  2010. ialloc_h=ialloc.h $(imemory_h)
  2011. iastruct_h=iastruct.h $(gxobj_h) $(ialloc_h)
  2012. iastate_h=iastate.h $(gxalloc_h) $(ialloc_h) $(istruct_h)
  2013. store_h=store.h $(ialloc_h)
  2014.  
  2015. GH=$(AK) $(ghost_h)
  2016.  
  2017. isupport1_=ialloc.$(OBJ) igc.$(OBJ) igcref.$(OBJ) igcstr.$(OBJ)
  2018. isupport2_=ilocate.$(OBJ) iname.$(OBJ) isave.$(OBJ)
  2019. isupport_=$(isupport1_) $(isupport2_)
  2020. isupport.dev: $(INT_MAK) $(ECHOGS_XE) $(isupport_)
  2021.     $(SETMOD) isupport $(isupport1_)
  2022.     $(ADDMOD) isupport -obj $(isupport2_)
  2023.     $(ADDMOD) isupport -init igcref
  2024.  
  2025. ialloc.$(OBJ): ialloc.c $(AK) $(memory__h) $(gx_h)\
  2026.  $(errors_h) $(gsstruct_h) $(gxarith_h)\
  2027.  $(iastate_h) $(iref_h) $(ivmspace_h) $(store_h)
  2028.  
  2029. # igc.c, igcref.c, and igcstr.c should really be in the dpsand2 list,
  2030. # but since all the GC enumeration and relocation routines refer to them,
  2031. # it's too hard to separate them out from the Level 1 base.
  2032. igc.$(OBJ): igc.c $(GH) $(memory__h)\
  2033.   $(errors_h) $(gsexit_h) $(gsmdebug_h) $(gsstruct_h) $(gsutil_h) \
  2034.   $(iastate_h) $(idict_h) $(igc_h) $(igcstr_h) $(inamedef_h) \
  2035.   $(ipacked_h) $(isave_h) $(isstate_h) $(istruct_h) $(opdef_h)
  2036.  
  2037. igcref.$(OBJ): igcref.c $(GH) $(memory__h)\
  2038.  $(gsexit_h) $(gsstruct_h)\
  2039.  $(iastate_h) $(idebug_h) $(igc_h) $(iname_h) $(ipacked_h) $(store_h)
  2040.  
  2041. igcstr.$(OBJ): igcstr.c $(GH) $(memory__h)\
  2042.  $(gsmdebug_h) $(gsstruct_h) $(iastate_h) $(igcstr_h)
  2043.  
  2044. ilocate.$(OBJ): ilocate.c $(GH) $(memory__h)\
  2045.  $(errors_h) $(gsexit_h) $(gsstruct_h)\
  2046.  $(iastate_h) $(idict_h) $(igc_h) $(igcstr_h) $(iname_h)\
  2047.  $(ipacked_h) $(isstate_h) $(iutil_h) $(ivmspace_h)\
  2048.  $(store_h)
  2049.  
  2050. iname.$(OBJ): iname.c $(GH) $(memory__h) $(string__h) \
  2051.   $(gsstruct_h) $(errors_h) $(imemory_h) $(inamedef_h) $(isave_h) $(store_h)
  2052.  
  2053. isave.$(OBJ): isave.c $(GH) $(memory__h)\
  2054.  $(errors_h) $(gsexit_h) $(gsstruct_h) $(gsutil_h)\
  2055.  $(iastate_h) $(inamedef_h) $(isave_h) $(isstate_h) $(ivmspace_h)\
  2056.  $(ipacked_h) $(store_h)
  2057.  
  2058. ### Include files
  2059.  
  2060. idparam_h=idparam.h
  2061. ilevel_h=ilevel.h
  2062. iparam_h=iparam.h $(gsparam_h)
  2063. istack_h=istack.h
  2064. iutil2_h=iutil2.h
  2065. opcheck_h=opcheck.h
  2066. opextern_h=opextern.h
  2067. # Nested include files
  2068. dstack_h=dstack.h $(istack_h)
  2069. estack_h=estack.h $(istack_h)
  2070. ostack_h=ostack.h $(istack_h)
  2071. oper_h=oper.h $(iutil_h) $(opcheck_h) $(opdef_h) $(opextern_h) $(ostack_h)
  2072.  
  2073. idebug.$(OBJ): idebug.c $(GH) $(string__h)\
  2074.  $(ialloc_h) $(idebug_h) $(idict_h) $(iname_h) $(istack_h) $(iutil_h) $(ivmspace_h)\
  2075.  $(ostack_h) $(opdef_h) $(ipacked_h) $(store_h)
  2076.  
  2077. idict.$(OBJ): idict.c $(GH) $(string__h) $(errors_h)\
  2078.  $(ialloc_h) $(idebug_h) $(ivmspace_h) $(inamedef_h) $(ipacked_h)\
  2079.  $(isave_h) $(store_h) $(iutil_h) $(idict_h) $(dstack_h)
  2080.  
  2081. idparam.$(OBJ): idparam.c $(GH) $(memory__h) $(string__h) $(errors_h)\
  2082.  $(gsmatrix_h) $(gsuid_h)\
  2083.  $(idict_h) $(idparam_h) $(ilevel_h) $(imemory_h) $(iname_h) $(iutil_h)\
  2084.  $(oper_h) $(store_h)
  2085.  
  2086. iparam.$(OBJ): iparam.c $(GH) $(memory__h) $(string__h) $(errors_h)\
  2087.  $(ialloc_h) $(idict_h) $(iname_h) $(imemory_h) $(iparam_h) $(istack_h) $(iutil_h) $(ivmspace_h)\
  2088.  $(opcheck_h) $(store_h)
  2089.  
  2090. istack.$(OBJ): istack.c $(GH) $(memory__h) \
  2091.   $(errors_h) $(gsstruct_h) $(gsutil_h) \
  2092.   $(ialloc_h) $(istack_h) $(istruct_h) $(iutil_h) $(ivmspace_h) $(store_h)
  2093.  
  2094. iutil.$(OBJ): iutil.c $(GH) $(math__h) $(memory__h) $(string__h)\
  2095.  $(gsccode_h) $(gsmatrix_h) $(gsutil_h) $(gxfont_h)\
  2096.  $(errors_h) $(idict_h) $(imemory_h) $(iutil_h) $(ivmspace_h)\
  2097.  $(iname_h) $(ipacked_h) $(oper_h) $(store_h)
  2098.  
  2099. # ======================== PostScript Level 1 ======================== #
  2100.  
  2101. ###### Include files
  2102.  
  2103. files_h=files.h
  2104. fname_h=fname.h
  2105. ichar_h=ichar.h
  2106. icharout_h=icharout.h
  2107. icolor_h=icolor.h
  2108. icsmap_h=icsmap.h
  2109. ifont_h=ifont.h $(gsccode_h) $(gsstruct_h)
  2110. iimage_h=iimage.h
  2111. imain_h=imain.h $(gsexit_h)
  2112. imainarg_h=imainarg.h
  2113. iminst_h=iminst.h $(imain_h)
  2114. interp_h=interp.h
  2115. iparray_h=iparray.h
  2116. iscannum_h=iscannum.h
  2117. istream_h=istream.h
  2118. main_h=main.h $(iminst_h)
  2119. overlay_h=overlay.h
  2120. sbwbs_h=sbwbs.h
  2121. sfilter_h=sfilter.h $(gstypes_h)
  2122. shcgen_h=shcgen.h
  2123. smtf_h=smtf.h
  2124. # Nested include files
  2125. bfont_h=bfont.h $(ifont_h)
  2126. ifilter_h=ifilter.h $(istream_h) $(ivmspace_h)
  2127. igstate_h=igstate.h $(gsstate_h) $(gxstate_h) $(istruct_h)
  2128. iscan_h=iscan.h $(sa85x_h) $(sstring_h)
  2129. sbhc_h=sbhc.h $(shc_h)
  2130. # Include files for optional features
  2131. ibnum_h=ibnum.h
  2132.  
  2133. ### Initialization and scanning
  2134.  
  2135. iconfig=iconfig$(CONFIG)
  2136. $(iconfig).$(OBJ): iconf.c $(stdio__h) \
  2137.   $(gconfig_h) $(gscdefs_h) $(gsmemory_h) \
  2138.   $(files_h) $(iminst_h) $(iref_h) $(ivmspace_h) $(opdef_h) $(stream_h)
  2139.     $(RM_) gconfig.h
  2140.     $(RM_) $(iconfig).c
  2141.     $(CP_) $(gconfig_h) gconfig.h
  2142.     $(CP_) $(srcdir)/iconf.c $(iconfig).c
  2143.     $(CCC) -I. -I$(srcdir) $(iconfig).c
  2144.     $(RM_) gconfig.h
  2145.     $(RM_) $(iconfig).c
  2146.  
  2147. iinit.$(OBJ): iinit.c $(GH) $(string__h)\
  2148.  $(gscdefs_h) $(gsexit_h) $(gsstruct_h)\
  2149.  $(ialloc_h) $(idict_h) $(dstack_h) $(errors_h)\
  2150.  $(ilevel_h) $(iname_h) $(interp_h) $(opdef_h)\
  2151.  $(ipacked_h) $(iparray_h) $(iutil_h) $(ivmspace_h) $(store_h)
  2152.  
  2153. iscan.$(OBJ): iscan.c $(GH) $(memory__h)\
  2154.  $(ialloc_h) $(idict_h) $(dstack_h) $(errors_h) $(files_h)\
  2155.  $(ilevel_h) $(iutil_h) $(iscan_h) $(iscannum_h) $(istruct_h) $(ivmspace_h)\
  2156.  $(iname_h) $(ipacked_h) $(iparray_h) $(istream_h) $(ostack_h) $(store_h)\
  2157.  $(stream_h) $(strimpl_h) $(sfilter_h) $(scanchar_h)
  2158.  
  2159. iscannum.$(OBJ): iscannum.c $(GH) $(math__h)\
  2160.   $(errors_h) $(iscannum_h) $(scanchar_h) $(scommon_h) $(store_h)
  2161.  
  2162. ### Streams
  2163.  
  2164. sfilter1.$(OBJ): sfilter1.c $(AK) $(stdio__h) $(memory__h) \
  2165.   $(sfilter_h) $(strimpl_h)
  2166.  
  2167. ###### Operators
  2168.  
  2169. OP=$(GH) $(errors_h) $(oper_h)
  2170.  
  2171. ### Non-graphics operators
  2172.  
  2173. zarith.$(OBJ): zarith.c $(OP) $(math__h) $(store_h)
  2174.  
  2175. zarray.$(OBJ): zarray.c $(OP) $(memory__h) $(ialloc_h) $(ipacked_h) $(store_h)
  2176.  
  2177. zcontrol.$(OBJ): zcontrol.c $(OP) $(string__h)\
  2178.  $(estack_h) $(files_h) $(ipacked_h) $(iutil_h) $(store_h) $(stream_h)
  2179.  
  2180. zdict.$(OBJ): zdict.c $(OP) \
  2181.   $(dstack_h) $(idict_h) $(ilevel_h) $(iname_h) $(ipacked_h) $(ivmspace_h) \
  2182.   $(store_h)
  2183.  
  2184. zfile.$(OBJ): zfile.c $(OP) $(memory__h) $(string__h) $(gp_h)\
  2185.  $(gsstruct_h) $(gxiodev_h) \
  2186.  $(ialloc_h) $(estack_h) $(files_h) $(fname_h) $(ilevel_h) $(interp_h) $(iutil_h)\
  2187.  $(isave_h) $(main_h) $(sfilter_h) $(stream_h) $(strimpl_h) $(store_h)
  2188.  
  2189. zfileio.$(OBJ): zfileio.c $(OP) $(gp_h) \
  2190.   $(files_h) $(ifilter_h) $(store_h) $(stream_h) $(strimpl_h) \
  2191.   $(gsmatrix_h) $(gxdevice_h) $(gxdevmem_h)
  2192.  
  2193. zfilter.$(OBJ): zfilter.c $(OP) $(memory__h)\
  2194.  $(gsstruct_h) $(files_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h) \
  2195.  $(sfilter_h) $(srlx_h) $(sstring_h) $(store_h) $(stream_h) $(strimpl_h)
  2196.  
  2197. zfname.$(OBJ): zfname.c $(OP) $(memory__h)\
  2198.  $(fname_h) $(gxiodev_h) $(ialloc_h) $(stream_h)
  2199.  
  2200. zfproc.$(OBJ): zfproc.c $(GH) $(memory__h)\
  2201.  $(errors_h) $(oper_h)\
  2202.  $(estack_h) $(files_h) $(gsstruct_h) $(ialloc_h) $(ifilter_h) $(istruct_h)\
  2203.  $(store_h) $(stream_h) $(strimpl_h)
  2204.  
  2205. zgeneric.$(OBJ): zgeneric.c $(OP) $(memory__h)\
  2206.  $(idict_h) $(estack_h) $(ivmspace_h) $(iname_h) $(ipacked_h) $(store_h)
  2207.  
  2208. ziodev.$(OBJ): ziodev.c $(OP) $(memory__h) $(stdio__h) $(string__h)\
  2209.  $(gp_h) $(gpcheck_h)\
  2210.  $(gsstruct_h) $(gxiodev_h)\
  2211.  $(files_h) $(ialloc_h) $(ivmspace_h) $(store_h) $(stream_h)
  2212.  
  2213. zmath.$(OBJ): zmath.c $(OP) $(math__h) $(gxfarith_h) $(store_h)
  2214.  
  2215. zmisc.$(OBJ): zmisc.c $(OP) $(gscdefs_h) $(gp_h) \
  2216.   $(errno__h) $(memory__h) $(string__h) \
  2217.   $(ialloc_h) $(idict_h) $(dstack_h) $(iname_h) $(ivmspace_h) $(ipacked_h) $(store_h)
  2218.  
  2219. zpacked.$(OBJ): zpacked.c $(OP) \
  2220.   $(ialloc_h) $(idict_h) $(ivmspace_h) $(iname_h) $(ipacked_h) $(iparray_h) \
  2221.   $(istack_h) $(store_h)
  2222.  
  2223. zrelbit.$(OBJ): zrelbit.c $(OP) $(gsutil_h) $(store_h) $(idict_h)
  2224.  
  2225. zstack.$(OBJ): zstack.c $(OP) $(memory__h)\
  2226.  $(ialloc_h) $(istack_h) $(store_h)
  2227.  
  2228. zstring.$(OBJ): zstring.c $(OP) $(memory__h)\
  2229.  $(gsutil_h)\
  2230.  $(ialloc_h) $(iname_h) $(ivmspace_h) $(store_h)
  2231.  
  2232. zsysvm.$(OBJ): zsysvm.c $(GH)\
  2233.  $(ialloc_h) $(ivmspace_h) $(oper_h) $(store_h)
  2234.  
  2235. ztoken.$(OBJ): ztoken.c $(OP) \
  2236.   $(estack_h) $(files_h) $(gsstruct_h) $(iscan_h) \
  2237.   $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  2238.  
  2239. ztype.$(OBJ): ztype.c $(OP) $(math__h) $(memory__h) $(string__h)\
  2240.  $(dstack_h) $(idict_h) $(imemory_h) $(iname_h)\
  2241.  $(iscan_h) $(iutil_h) $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  2242.  
  2243. zvmem.$(OBJ): zvmem.c $(OP) \
  2244.   $(ialloc_h) $(idict_h) $(dstack_h) $(estack_h) $(isave_h) $(igstate_h) $(store_h) \
  2245.   $(gsmatrix_h) $(gsstate_h) $(gsstruct_h)
  2246.  
  2247. ### Graphics operators
  2248.  
  2249. zchar.$(OBJ): zchar.c $(OP)\
  2250.  $(gsstruct_h) $(gxarith_h) $(gxfixed_h) $(gxmatrix_h)\
  2251.  $(gxchar_h) $(gxdevice_h) $(gxfont_h) $(gzpath_h) $(gzstate_h)\
  2252.  $(dstack_h) $(estack_h) $(ialloc_h) $(ichar_h) $(idict_h) $(ifont_h)\
  2253.  $(ilevel_h) $(iname_h) $(igstate_h) $(ipacked_h) $(store_h)
  2254.  
  2255. # zcharout is used for Type 1 and Type 42 fonts only.
  2256. zcharout.$(OBJ): zcharout.c $(OP)\
  2257.  $(gschar_h) $(gxdevice_h) $(gxfont_h)\
  2258.  $(dstack_h) $(estack_h) $(ichar_h) $(icharout_h)\
  2259.  $(idict_h) $(ifont_h) $(igstate_h) $(store_h)
  2260.  
  2261. zcolor.$(OBJ): zcolor.c $(OP) \
  2262.   $(gxfixed_h) $(gxmatrix_h) $(gzstate_h) $(gxdevice_h) $(gxcmap_h) \
  2263.   $(ialloc_h) $(icolor_h) $(estack_h) $(iutil_h) $(igstate_h) $(store_h)
  2264.  
  2265. zdevice.$(OBJ): zdevice.c $(OP) $(string__h)\
  2266.  $(ialloc_h) $(idict_h) $(igstate_h) $(iname_h) $(interp_h) $(iparam_h) $(ivmspace_h)\
  2267.  $(gsmatrix_h) $(gsstate_h) $(gxdevice_h) $(store_h)
  2268.  
  2269. zfont.$(OBJ): zfont.c $(OP)\
  2270.  $(gschar_h) $(gsstruct_h) $(gxdevice_h) $(gxfont_h) $(gxfcache_h)\
  2271.  $(gzstate_h)\
  2272.  $(ialloc_h) $(idict_h) $(igstate_h) $(iname_h) $(isave_h) $(ivmspace_h)\
  2273.  $(bfont_h) $(store_h)
  2274.  
  2275. zfont2.$(OBJ): zfont2.c $(OP) $(memory__h) $(string__h)\
  2276.  $(gsmatrix_h) $(gxdevice_h) $(gschar_h) $(gxfixed_h) $(gxfont_h)\
  2277.  $(ialloc_h) $(bfont_h) $(idict_h) $(idparam_h) $(ilevel_h) $(iname_h) $(istruct_h)\
  2278.  $(ipacked_h) $(store_h)
  2279.  
  2280. zgstate.$(OBJ): zgstate.c $(OP) $(math__h)\
  2281.  $(gsmatrix_h) $(ialloc_h) $(idict_h) $(igstate_h) $(istruct_h) $(store_h)
  2282.  
  2283. zht.$(OBJ): zht.c $(OP) $(memory__h)\
  2284.  $(gsmatrix_h) $(gsstate_h) $(gsstruct_h) $(gxdevice_h) $(gzht_h) \
  2285.  $(ialloc_h) $(estack_h) $(igstate_h) $(store_h)
  2286.  
  2287. zimage.$(OBJ): zimage.c $(OP) \
  2288.   $(estack_h) $(ialloc_h) $(ifilter_h) $(igstate_h) $(iimage_h) $(ilevel_h) \
  2289.   $(gscspace_h) $(gsimage_h) $(gsmatrix_h) $(gsstruct_h) \
  2290.   $(store_h) $(stream_h)
  2291.  
  2292. zmatrix.$(OBJ): zmatrix.c $(OP)\
  2293.  $(gsmatrix_h) $(igstate_h) $(gscoord_h) $(store_h)
  2294.  
  2295. zpaint.$(OBJ): zpaint.c $(OP)\
  2296.  $(gspaint_h) $(igstate_h)
  2297.  
  2298. zpath.$(OBJ): zpath.c $(OP) $(math__h) \
  2299.   $(gsmatrix_h) $(gspath_h) $(igstate_h) $(store_h)
  2300.  
  2301. # Define the base PostScript language interpreter.
  2302. # This is the subset of PostScript Level 1 required by our PDF reader.
  2303.  
  2304. INT1=idebug.$(OBJ) idict.$(OBJ) idparam.$(OBJ) iinit.$(OBJ)
  2305. INT2=interp.$(OBJ) iparam.$(OBJ) ireclaim.$(OBJ)
  2306. INT3=iscan.$(OBJ) iscannum.$(OBJ) istack.$(OBJ) iutil.$(OBJ)
  2307. INT4=scantab.$(OBJ) sfilter1.$(OBJ) sstring.$(OBJ) stream.$(OBJ)
  2308. Z1=zarith.$(OBJ) zarray.$(OBJ) zcontrol.$(OBJ) zdict.$(OBJ)
  2309. Z1OPS=zarith zarray zcontrol zdict
  2310. Z2=zfile.$(OBJ) zfileio.$(OBJ) zfilter.$(OBJ) zfname.$(OBJ) zfproc.$(OBJ)
  2311. Z2OPS=zfile zfileio zfilter zfproc
  2312. Z3=zgeneric.$(OBJ) ziodev.$(OBJ) zmath.$(OBJ) zmisc.$(OBJ) zpacked.$(OBJ)
  2313. Z3OPS=zgeneric ziodev zmath zmisc zpacked
  2314. Z4=zrelbit.$(OBJ) zstack.$(OBJ) zstring.$(OBJ) zsysvm.$(OBJ)
  2315. Z4OPS=zrelbit zstack zstring zsysvm
  2316. Z5=ztoken.$(OBJ) ztype.$(OBJ) zvmem.$(OBJ)
  2317. Z5OPS=ztoken ztype zvmem
  2318. Z6=zchar.$(OBJ) zcolor.$(OBJ) zdevice.$(OBJ) zfont.$(OBJ) zfont2.$(OBJ)
  2319. Z6OPS=zchar zcolor zdevice zfont zfont2
  2320. Z7=zgstate.$(OBJ) zht.$(OBJ) zimage.$(OBJ) zmatrix.$(OBJ) zpaint.$(OBJ) zpath.$(OBJ)
  2321. Z7OPS=zgstate zht zimage zmatrix zpaint zpath
  2322. # We have to be a little underhanded with *config.$(OBJ) so as to avoid
  2323. # circular definitions.
  2324. INT_OBJS=imainarg.$(OBJ) gsargs.$(OBJ) imain.$(OBJ) \
  2325.   $(INT1) $(INT2) $(INT3) $(INT4) \
  2326.   $(Z1) $(Z2) $(Z3) $(Z4) $(Z5) $(Z6) $(Z7)
  2327. INT_CONFIG=$(gconfig).$(OBJ) $(gscdefs).$(OBJ) $(iconfig).$(OBJ) \
  2328.   iccinit$(COMPILE_INITS).$(OBJ)
  2329. INT_ALL=$(INT_OBJS) $(INT_CONFIG)
  2330. # We omit libcore.dev, which should be included here, because problems
  2331. # with the Unix linker require libcore to appear last in the link list
  2332. # when libcore is really a library.
  2333. # We omit $(INT_CONFIG) from the dependency list because they have special
  2334. # dependency requirements and are added to the link list at the very end.
  2335. # zfilter.c shouldn't include the RLE and RLD filters, but we don't want to
  2336. # change this now.
  2337. psbase.dev: $(INT_MAK) $(ECHOGS_XE) $(INT_OBJS)\
  2338.  isupport.dev rld.dev rle.dev sfile.dev
  2339.     $(SETMOD) psbase imainarg.$(OBJ) gsargs.$(OBJ) imain.$(OBJ)
  2340.     $(ADDMOD) psbase -obj $(INT_CONFIG)
  2341.     $(ADDMOD) psbase -obj $(INT1)
  2342.     $(ADDMOD) psbase -obj $(INT2)
  2343.     $(ADDMOD) psbase -obj $(INT3)
  2344.     $(ADDMOD) psbase -obj $(INT4)
  2345.     $(ADDMOD) psbase -obj $(Z1)
  2346.     $(ADDMOD) psbase -oper $(Z1OPS)
  2347.     $(ADDMOD) psbase -obj $(Z2)
  2348.     $(ADDMOD) psbase -oper $(Z2OPS)
  2349.     $(ADDMOD) psbase -obj $(Z3)
  2350.     $(ADDMOD) psbase -oper $(Z3OPS)
  2351.     $(ADDMOD) psbase -obj $(Z4)
  2352.     $(ADDMOD) psbase -oper $(Z4OPS)
  2353.     $(ADDMOD) psbase -obj $(Z5)
  2354.     $(ADDMOD) psbase -oper $(Z5OPS)
  2355.     $(ADDMOD) psbase -obj $(Z6)
  2356.     $(ADDMOD) psbase -oper $(Z6OPS)
  2357.     $(ADDMOD) psbase -obj $(Z7)
  2358.     $(ADDMOD) psbase -oper $(Z7OPS)
  2359.     $(ADDMOD) psbase -iodev stdin stdout stderr lineedit statementedit
  2360.     $(ADDMOD) psbase -include isupport rld rle sfile
  2361.  
  2362. # -------------------------- Feature definitions -------------------------- #
  2363.  
  2364. # ---------------- Full Level 1 interpreter ---------------- #
  2365.  
  2366. level1.dev: $(INT_MAK) $(ECHOGS_XE) psbase.dev bcp.dev hsb.dev path1.dev type1.dev
  2367.     $(SETMOD) level1 -include psbase bcp hsb path1 type1
  2368.     $(ADDMOD) level1 -emulator PostScript PostScriptLevel1
  2369.  
  2370. # -------- Level 1 color extensions (CMYK color and colorimage) -------- #
  2371.  
  2372. color.dev: $(INT_MAK) $(ECHOGS_XE) cmyklib.dev colimlib.dev cmykread.dev
  2373.     $(SETMOD) color -include cmyklib colimlib cmykread
  2374.  
  2375. cmykread_=zcolor1.$(OBJ) zht1.$(OBJ)
  2376. cmykread.dev: $(INT_MAK) $(ECHOGS_XE) $(cmykread_)
  2377.     $(SETMOD) cmykread $(cmykread_)
  2378.     $(ADDMOD) cmykread -oper zcolor1 zht1
  2379.  
  2380. zcolor1.$(OBJ): zcolor1.c $(OP) \
  2381.   $(gscolor1_h) \
  2382.   $(gxcmap_h) $(gxcspace_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) \
  2383.   $(gzstate_h) \
  2384.   $(ialloc_h) $(icolor_h) $(iimage_h) $(estack_h) $(iutil_h) $(igstate_h) $(store_h)
  2385.  
  2386. zht1.$(OBJ): zht1.c $(OP) $(memory__h)\
  2387.  $(gsmatrix_h) $(gsstate_h) $(gsstruct_h) $(gxdevice_h) $(gzht_h)\
  2388.  $(ialloc_h) $(estack_h) $(igstate_h) $(store_h)
  2389.  
  2390. # ---------------- HSB color ---------------- #
  2391.  
  2392. hsb_=zhsb.$(OBJ)
  2393. hsb.dev: $(INT_MAK) $(ECHOGS_XE) $(hsb_) hsblib.dev
  2394.     $(SETMOD) hsb $(hsb_)
  2395.     $(ADDMOD) hsb -include hsblib
  2396.     $(ADDMOD) hsb -oper zhsb
  2397.  
  2398. zhsb.$(OBJ): zhsb.c $(OP) \
  2399.   $(gshsb_h) $(igstate_h) $(store_h)
  2400.  
  2401. # ---- Level 1 path miscellany (arcs, pathbbox, path enumeration) ---- #
  2402.  
  2403. path1_=zpath1.$(OBJ)
  2404. path1.dev: $(INT_MAK) $(ECHOGS_XE) $(path1_) path1lib.dev
  2405.     $(SETMOD) path1 $(path1_)
  2406.     $(ADDMOD) path1 -include path1lib
  2407.     $(ADDMOD) path1 -oper zpath1
  2408.  
  2409. zpath1.$(OBJ): zpath1.c $(OP) $(memory__h)\
  2410.  $(ialloc_h) $(estack_h) $(gspath_h) $(gsstruct_h) $(igstate_h) $(store_h)
  2411.  
  2412. # ================ Level-independent PostScript options ================ #
  2413.  
  2414. # ---------------- BCP filters ---------------- #
  2415.  
  2416. bcp_=sbcp.$(OBJ) zfbcp.$(OBJ)
  2417. bcp.dev: $(INT_MAK) $(ECHOGS_XE) $(bcp_)
  2418.     $(SETMOD) bcp $(bcp_)
  2419.     $(ADDMOD) bcp -oper zfbcp
  2420.  
  2421. sbcp.$(OBJ): sbcp.c $(AK) $(stdio__h) \
  2422.   $(sfilter_h) $(strimpl_h)
  2423.  
  2424. zfbcp.$(OBJ): zfbcp.c $(OP) $(memory__h)\
  2425.  $(gsstruct_h) $(ialloc_h) $(ifilter_h)\
  2426.  $(sfilter_h) $(stream_h) $(strimpl_h)
  2427.  
  2428. # ---------------- Incremental font loading ---------------- #
  2429. # (This only works for Type 1 fonts without eexec encryption.)
  2430.  
  2431. diskfont.dev: $(INT_MAK) $(ECHOGS_XE)
  2432.     $(SETMOD) diskfont -ps gs_diskf
  2433.  
  2434. # ---------------- Double-precision floats ---------------- #
  2435.  
  2436. double_=zdouble.$(OBJ)
  2437. double.dev: $(INT_MAK) $(ECHOGS_XE) $(double_)
  2438.     $(SETMOD) double $(double_)
  2439.     $(ADDMOD) double -oper zdouble
  2440.  
  2441. zdouble.$(OBJ): zdouble.c $(OP) $(ctype__h) $(math__h) $(memory__h) $(string__h) \
  2442.   $(gxfarith_h) $(store_h)
  2443.  
  2444. # ---------------- EPSF files with binary headers ---------------- #
  2445.  
  2446. epsf.dev: $(INT_MAK) $(ECHOGS_XE)
  2447.     $(SETMOD) epsf -ps gs_epsf
  2448.  
  2449. # ---------------- RasterOp ---------------- #
  2450. # This should be a separable feature in the core also....
  2451.  
  2452. rasterop.dev: $(INT_MAK) $(ECHOGS_XE) roplib.dev ropread.dev
  2453.     $(SETMOD) rasterop -include roplib ropread
  2454.  
  2455. ropread_=zrop.$(OBJ)
  2456. ropread.dev: $(INT_MAK) $(ECHOGS_XE) $(ropread_)
  2457.     $(SETMOD) ropread $(ropread_)
  2458.     $(ADDMOD) ropread -oper zrop
  2459.  
  2460. zrop.$(OBJ): zrop.c $(OP) $(memory__h)\
  2461.  $(gsrop_h) $(gsutil_h) $(gxdevice_h)\
  2462.  $(idict_h) $(idparam_h) $(igstate_h) $(store_h)
  2463.  
  2464. # ---------------- PostScript Type 1 (and Type 4) fonts ---------------- #
  2465.  
  2466. type1.dev: $(INT_MAK) $(ECHOGS_XE) psf1lib.dev psf1read.dev
  2467.     $(SETMOD) type1 -include psf1lib psf1read
  2468.  
  2469. psf1read_=seexec.$(OBJ) zchar1.$(OBJ) zcharout.$(OBJ) zfont1.$(OBJ) zmisc1.$(OBJ)
  2470. psf1read.dev: $(INT_MAK) $(ECHOGS_XE) $(psf1read_)
  2471.     $(SETMOD) psf1read $(psf1read_)
  2472.     $(ADDMOD) psf1read -oper zchar1 zfont1 zmisc1
  2473.     $(ADDMOD) psf1read -ps gs_type1
  2474.  
  2475. seexec.$(OBJ): seexec.c $(AK) $(stdio__h) \
  2476.   $(gscrypt1_h) $(scanchar_h) $(sfilter_h) $(strimpl_h)
  2477.  
  2478. zchar1.$(OBJ): zchar1.c $(OP) \
  2479.   $(gspaint_h) $(gspath_h) $(gsstruct_h) \
  2480.   $(gxchar_h) $(gxdevice_h) $(gxfixed_h) $(gxmatrix_h) \
  2481.   $(gxfont_h) $(gxfont1_h) $(gxtype1_h) $(gzstate_h) \
  2482.   $(estack_h) $(ialloc_h) $(ichar_h) $(icharout_h) \
  2483.   $(idict_h) $(ifont_h) $(igstate_h) $(store_h)
  2484.  
  2485. zfont1.$(OBJ): zfont1.c $(OP) \
  2486.   $(gsmatrix_h) $(gxdevice_h) $(gschar_h) \
  2487.   $(gxfixed_h) $(gxfont_h) $(gxfont1_h) \
  2488.   $(bfont_h) $(ialloc_h) $(idict_h) $(idparam_h) $(store_h)
  2489.  
  2490. zmisc1.$(OBJ): zmisc1.c $(OP) $(memory__h)\
  2491.  $(gscrypt1_h)\
  2492.  $(idict_h) $(idparam_h) $(ifilter_h)\
  2493.  $(sfilter_h) $(stream_h) $(strimpl_h)
  2494.  
  2495. # -------------- Compact Font Format and Type 2 charstrings ------------- #
  2496.  
  2497. cff.dev: $(INT_MAK) $(ECHOGS_XE) gs_cff.ps psl2int.dev
  2498.     $(SETMOD) cff -ps gs_cff
  2499.  
  2500. type2.dev: $(INT_MAK) $(ECHOGS_XE) type1.dev psf2lib.dev
  2501.     $(SETMOD) type2 -include psf2lib
  2502.  
  2503. # ---------------- TrueType and PostScript Type 42 fonts ---------------- #
  2504.  
  2505. # Native TrueType support
  2506. ttfont.dev: $(INT_MAK) $(ECHOGS_XE) type42.dev
  2507.     $(SETMOD) ttfont -include type42
  2508.     $(ADDMOD) ttfont -ps gs_mro_e gs_wan_e gs_ttf
  2509.  
  2510. # Type 42 (embedded TrueType) support
  2511. type42read_=zchar42.$(OBJ) zcharout.$(OBJ) zfont42.$(OBJ)
  2512. type42.dev: $(INT_MAK) $(ECHOGS_XE) $(type42read_) ttflib.dev
  2513.     $(SETMOD) type42 $(type42read_)
  2514.     $(ADDMOD) type42 -include ttflib    
  2515.     $(ADDMOD) type42 -oper zchar42 zfont42
  2516.     $(ADDMOD) type42 -ps gs_typ42
  2517.  
  2518. zchar42.$(OBJ): zchar42.c $(OP) \
  2519.   $(gsmatrix_h) $(gspaint_h) $(gspath_h) \
  2520.   $(gxfixed_h) $(gxchar_h) $(gxfont_h) $(gxfont42_h) \
  2521.   $(gxistate_h) $(gxpath_h) $(gzstate_h) \
  2522.   $(dstack_h) $(estack_h) $(ichar_h) $(icharout_h) \
  2523.   $(ifont_h) $(igstate_h) $(store_h)
  2524.  
  2525. zfont42.$(OBJ): zfont42.c $(OP) \
  2526.   $(gsccode_h) $(gsmatrix_h) $(gxfont_h) $(gxfont42_h) \
  2527.   $(bfont_h) $(idict_h) $(idparam_h) $(store_h)
  2528.  
  2529. # ---------------- Obsolete PPM writing facility ---------------- #
  2530.  
  2531. writeppm_=zwppm.$(OBJ)
  2532. writeppm.dev: $(INT_MAK) $(ECHOGS_XE) $(writeppm_)
  2533.     $(SETMOD) writeppm $(writeppm_)
  2534.     $(ADDMOD) writeppm -oper zwppm
  2535.  
  2536. zwppm.$(OBJ): zwppm.c $(OP) $(memory__h) \
  2537.   $(files_h) $(gscdefs_h) $(gsmatrix_h) $(gxdevice_h) $(gxdevmem_h) \
  2538.   $(stream_h)
  2539.  
  2540. # ======================== Precompilation options ======================== #
  2541.  
  2542. # ---------------- Precompiled fonts ---------------- #
  2543. # See fonts.txt for more information.
  2544.  
  2545. ccfont_h=ccfont.h $(std_h) $(gsmemory_h) $(iref_h) $(ivmspace_h) $(store_h)
  2546.  
  2547. CCFONT=$(OP) $(ccfont_h)
  2548.  
  2549. # List the fonts we are going to compile.
  2550. # Because of intrinsic limitations in `make', we have to list
  2551. # the object file names and the font names separately.
  2552. # Because of limitations in the DOS shell, we have to break the fonts up
  2553. # into lists that will fit on a single line (120 characters).
  2554. # The rules for constructing the .c files from the fonts themselves,
  2555. # and for compiling the .c files, are in cfonts.mak, not here.
  2556. # For example, to compile the Courier fonts, you should invoke
  2557. #    make -f cfonts.mak Courier_o
  2558. # By convention, the names of the 35 standard compiled fonts use '0' for
  2559. # the foundry name.  This allows users to substitute different foundries
  2560. # without having to change this makefile.
  2561. ccfonts_ps=gs_ccfnt
  2562. ccfonts1_=0agk.$(OBJ) 0agko.$(OBJ) 0agd.$(OBJ) 0agdo.$(OBJ)
  2563. ccfonts1=agk agko agd agdo
  2564. ccfonts2_=0bkl.$(OBJ) 0bkli.$(OBJ) 0bkd.$(OBJ) 0bkdi.$(OBJ)
  2565. ccfonts2=bkl bkli bkd bkdi
  2566. ccfonts3_=0crr.$(OBJ) 0cri.$(OBJ) 0crb.$(OBJ) 0crbi.$(OBJ)
  2567. ccfonts3=crr cri crb crbi
  2568. ccfonts4_=0hvr.$(OBJ) 0hvro.$(OBJ) 0hvb.$(OBJ) 0hvbo.$(OBJ)
  2569. ccfonts4=hvr hvro hvb hvbo
  2570. ccfonts5_=0hvrrn.$(OBJ) 0hvrorn.$(OBJ) 0hvbrn.$(OBJ) 0hvborn.$(OBJ)
  2571. ccfonts5=hvrrn hvrorn hvbrn hvborn
  2572. ccfonts6_=0ncr.$(OBJ) 0ncri.$(OBJ) 0ncb.$(OBJ) 0ncbi.$(OBJ)
  2573. ccfonts6=ncr ncri ncb ncbi
  2574. ccfonts7_=0plr.$(OBJ) 0plri.$(OBJ) 0plb.$(OBJ) 0plbi.$(OBJ)
  2575. ccfonts7=plr plri plb plbi
  2576. ccfonts8_=0tmr.$(OBJ) 0tmri.$(OBJ) 0tmb.$(OBJ) 0tmbi.$(OBJ)
  2577. ccfonts8=tmr tmri tmb tmbi
  2578. ccfonts9_=0syr.$(OBJ) 0zcmi.$(OBJ) 0zdr.$(OBJ)
  2579. ccfonts9=syr zcmi zdr
  2580. # The free distribution includes Bitstream Charter, Utopia, and
  2581. # freeware Cyrillic and Kana fonts.  We only provide for compiling
  2582. # Charter and Utopia.
  2583. ccfonts10free_=bchr.$(OBJ) bchri.$(OBJ) bchb.$(OBJ) bchbi.$(OBJ)
  2584. ccfonts10free=chr chri chb chbi
  2585. ccfonts11free_=putr.$(OBJ) putri.$(OBJ) putb.$(OBJ) putbi.$(OBJ)
  2586. ccfonts11free=utr utri utb utbi
  2587. # Uncomment the alternatives in the next 4 lines if you want
  2588. # Charter and Utopia compiled in.
  2589. #ccfonts10_=$(ccfonts10free_)
  2590. ccfonts10_=
  2591. #ccfonts10=$(ccfonts10free)
  2592. ccfonts10=
  2593. #ccfonts11_=$(ccfonts11free_)
  2594. ccfonts11_=
  2595. #ccfonts11=$(ccfonts11free)
  2596. ccfonts11=
  2597. # Add your own fonts here if desired.
  2598. ccfonts12_=
  2599. ccfonts12=
  2600. ccfonts13_=
  2601. ccfonts13=
  2602. ccfonts14_=
  2603. ccfonts14=
  2604. ccfonts15_=
  2605. ccfonts15=
  2606.  
  2607. # It's OK for ccfonts_.dev not to be CONFIG-dependent, because it only
  2608. # exists during the execution of the following rule.
  2609. # font2c has the prefix "gs" built into it, so we need to instruct
  2610. # genconf to use the same one.
  2611. $(gconfigf_h): $(MAKEFILE) $(INT_MAK) $(GENCONF_XE)
  2612.     $(SETMOD) ccfonts_ -font $(ccfonts1)
  2613.     $(ADDMOD) ccfonts_ -font $(ccfonts2)
  2614.     $(ADDMOD) ccfonts_ -font $(ccfonts3)
  2615.     $(ADDMOD) ccfonts_ -font $(ccfonts4)
  2616.     $(ADDMOD) ccfonts_ -font $(ccfonts5)
  2617.     $(ADDMOD) ccfonts_ -font $(ccfonts6)
  2618.     $(ADDMOD) ccfonts_ -font $(ccfonts7)
  2619.     $(ADDMOD) ccfonts_ -font $(ccfonts8)
  2620.     $(ADDMOD) ccfonts_ -font $(ccfonts9)
  2621.     $(ADDMOD) ccfonts_ -font $(ccfonts10)
  2622.     $(ADDMOD) ccfonts_ -font $(ccfonts11)
  2623.     $(ADDMOD) ccfonts_ -font $(ccfonts12)
  2624.     $(ADDMOD) ccfonts_ -font $(ccfonts13)
  2625.     $(ADDMOD) ccfonts_ -font $(ccfonts14)
  2626.     $(ADDMOD) ccfonts_ -font $(ccfonts15)
  2627.     $(EXP)genconf ccfonts_.dev -n gs -f $(gconfigf_h)
  2628.  
  2629. # We separate icfontab.dev from ccfonts.dev so that a customer can put
  2630. # compiled fonts into a separate shared library.
  2631.  
  2632. icfontab=icfontab$(CONFIG)
  2633.  
  2634. # Define ccfont_table separately, so it can be set from the command line
  2635. # to select an alternate compiled font table.
  2636. ccfont_table=$(icfontab)
  2637.  
  2638. $(icfontab).dev: $(MAKEFILE) $(INT_MAK) $(ECHOGS_XE) $(icfontab).$(OBJ) \
  2639.   $(ccfonts1_) $(ccfonts2_) $(ccfonts3_) $(ccfonts4_) $(ccfonts5_) \
  2640.   $(ccfonts6_) $(ccfonts7_) $(ccfonts8_) $(ccfonts9_) $(ccfonts10_) \
  2641.   $(ccfonts11_) $(ccfonts12_) $(ccfonts13_) $(ccfonts14_) $(ccfonts15_)
  2642.     $(SETMOD) $(icfontab) -obj $(icfontab).$(OBJ)
  2643.     $(ADDMOD) $(icfontab) -obj $(ccfonts1_)
  2644.     $(ADDMOD) $(icfontab) -obj $(ccfonts2_)
  2645.     $(ADDMOD) $(icfontab) -obj $(ccfonts3_)
  2646.     $(ADDMOD) $(icfontab) -obj $(ccfonts4_)
  2647.     $(ADDMOD) $(icfontab) -obj $(ccfonts5_)
  2648.     $(ADDMOD) $(icfontab) -obj $(ccfonts6_)
  2649.     $(ADDMOD) $(icfontab) -obj $(ccfonts7_)
  2650.     $(ADDMOD) $(icfontab) -obj $(ccfonts8_)
  2651.     $(ADDMOD) $(icfontab) -obj $(ccfonts9_)
  2652.     $(ADDMOD) $(icfontab) -obj $(ccfonts10_)
  2653.     $(ADDMOD) $(icfontab) -obj $(ccfonts11_)
  2654.     $(ADDMOD) $(icfontab) -obj $(ccfonts12_)
  2655.     $(ADDMOD) $(icfontab) -obj $(ccfonts13_)
  2656.     $(ADDMOD) $(icfontab) -obj $(ccfonts14_)
  2657.     $(ADDMOD) $(icfontab) -obj $(ccfonts15_)
  2658.  
  2659. $(icfontab).$(OBJ): icfontab.c $(AK) $(ccfont_h) $(gconfigf_h)
  2660.     $(CP_) $(gconfigf_h) gconfigf.h
  2661.     $(CCCF) icfontab.c
  2662.  
  2663. # Strictly speaking, ccfonts shouldn't need to include type1,
  2664. # since one could choose to precompile only Type 0 fonts,
  2665. # but getting this exactly right would be too much work.
  2666. ccfonts=ccfonts$(CONFIG)
  2667. $(ccfonts).dev: $(MAKEFILE) $(INT_MAK) type1.dev iccfont.$(OBJ) \
  2668.   $(ccfont_table).dev
  2669.     $(SETMOD) $(ccfonts) -include type1
  2670.     $(ADDMOD) $(ccfonts) -include $(ccfont_table)
  2671.     $(ADDMOD) $(ccfonts) -obj iccfont.$(OBJ)
  2672.     $(ADDMOD) $(ccfonts) -oper ccfonts
  2673.     $(ADDMOD) $(ccfonts) -ps $(ccfonts_ps)
  2674.  
  2675. iccfont.$(OBJ): iccfont.c $(GH) $(string__h)\
  2676.  $(gsstruct_h) $(ccfont_h) $(errors_h)\
  2677.  $(ialloc_h) $(idict_h) $(ifont_h) $(iname_h) $(isave_h) $(iutil_h)\
  2678.  $(oper_h) $(ostack_h) $(store_h) $(stream_h) $(strimpl_h) $(sfilter_h) $(iscan_h)
  2679.     $(CCCF) iccfont.c
  2680.  
  2681. # ---------------- Compiled initialization code ---------------- #
  2682.  
  2683. # We select either iccinit0 or iccinit1 depending on COMPILE_INITS.
  2684.  
  2685. iccinit0.$(OBJ): iccinit0.c $(stdpre_h)
  2686.     $(CCCF) -I. -I$(srcdir) $(srcdir)/iccinit0.c
  2687.  
  2688. iccinit1.$(OBJ): gs_init.$(OBJ)
  2689.     $(CP_) gs_init.$(OBJ) iccinit1.$(OBJ)
  2690.  
  2691. # All the gs_*.ps files should be prerequisites of gs_init.c,
  2692. # but we don't have any convenient list of them.
  2693. gs_init.c: $(GS_INIT) $(GENINIT_XE) $(gconfig_h)
  2694.     cp $(srcdir)/gs_*.ps .
  2695.     $(EXP)geninit $(GS_INIT) $(gconfig_h) -c gs_init.c
  2696.  
  2697. gs_init.$(OBJ): gs_init.c $(stdpre_h)
  2698.     $(CCCF) -I. -I$(srcdir) gs_init.c
  2699.  
  2700. # ======================== PostScript Level 2 ======================== #
  2701.  
  2702. ### In addition to the true Level 2 configuration, we define a 'minimal'
  2703. ### Level 2 that can be used with -dDEBUG in the 16-bit Windows environment.
  2704. ### This also may require trimming down the sizes of the stacks in interp.c.
  2705.  
  2706. lev2min.dev: $(INT_MAK) $(ECHOGS_XE) \
  2707.   psbase.dev devctrl.dev color.dev \
  2708.   dps2lib.dev dps2read.dev fdecode.dev path1.dev type1.dev \
  2709.   psl2lib.dev psl2read.dev
  2710.     $(SETMOD) lev2min -include psbase devctrl color
  2711.     $(ADDMOD) lev2min -include dps2lib dps2read fdecode path1 type1
  2712.     $(ADDMOD) lev2min -include psl2lib psl2read
  2713.     $(ADDMOD) lev2min -emulator PostScript PostScriptLevel1 PostScriptLevel2
  2714.  
  2715. level2.dev: $(INT_MAK) $(ECHOGS_XE) \
  2716.  cidfont.dev cie.dev cmapread.dev compfont.dev dct.dev devctrl.dev dpsand2.dev\
  2717.  filter.dev level1.dev pattern.dev psl2lib.dev psl2read.dev sepr.dev\
  2718.  type42.dev xfilter.dev
  2719.     $(SETMOD) level2 -include cidfont cie cmapread compfont
  2720.     $(ADDMOD) level2 -include dct devctrl dpsand2 filter
  2721.     $(ADDMOD) level2 -include level1 pattern psl2lib psl2read
  2722.     $(ADDMOD) level2 -include sepr type42 xfilter
  2723.     $(ADDMOD) level2 -emulator PostScript PostScriptLevel2
  2724.  
  2725. # Define basic Level 2 language support.
  2726. # This is the minimum required for CMap and CIDFont support.
  2727.  
  2728. psl2int_=iutil2.$(OBJ) zmisc2.$(OBJ) zusparam.$(OBJ)
  2729. psl2int.dev: $(INT_MAK) $(ECHOGS_XE) $(psl2int_) dps2int.dev
  2730.     $(SETMOD) psl2int $(psl2int_)
  2731.     $(ADDMOD) psl2int -include dps2int
  2732.     $(ADDMOD) psl2int -oper zmisc2 zusparam
  2733.     $(ADDMOD) psl2int -ps gs_lev2 gs_res
  2734.  
  2735. iutil2.$(OBJ): iutil2.c $(GH) $(memory__h) $(string__h)\
  2736.  $(gsparam_h) $(gsutil_h)\
  2737.  $(errors_h) $(opcheck_h) $(imemory_h) $(iutil_h) $(iutil2_h)
  2738.  
  2739. zmisc2.$(OBJ): zmisc2.c $(OP) $(memory__h) $(string__h)\
  2740.  $(idict_h) $(idparam_h) $(iparam_h) $(dstack_h) $(estack_h)\
  2741.  $(ilevel_h) $(iname_h) $(iutil2_h) $(ivmspace_h) $(store_h)
  2742.  
  2743. # Note that zusparam includes both Level 1 and Level 2 operators.
  2744. zusparam.$(OBJ): zusparam.c $(OP) $(memory__h) $(string__h)\
  2745.  $(gscdefs_h) $(gsfont_h) $(gsstruct_h) $(gsutil_h) $(gxht_h)\
  2746.  $(ialloc_h) $(idict_h) $(idparam_h) $(iparam_h) $(dstack_h) $(estack_h)\
  2747.  $(iname_h) $(iutil2_h) $(store_h)
  2748.  
  2749. # Define full Level 2 support.
  2750.  
  2751. psl2read_=zcolor2.$(OBJ) zcsindex.$(OBJ) zht2.$(OBJ) zimage2.$(OBJ)
  2752. # Note that zmisc2 includes both Level 1 and Level 2 operators.
  2753. psl2read.dev: $(INT_MAK) $(ECHOGS_XE) $(psl2read_) psl2int.dev dps2read.dev
  2754.     $(SETMOD) psl2read $(psl2read_)
  2755.     $(ADDMOD) psl2read -include psl2int dps2read
  2756.     $(ADDMOD) psl2read -oper zcolor2_l2 zcsindex_l2
  2757.     $(ADDMOD) psl2read -oper zht2_l2 zimage2_l2
  2758.  
  2759. zcolor2.$(OBJ): zcolor2.c $(OP)\
  2760.  $(gscolor_h) $(gsmatrix_h) $(gsstruct_h)\
  2761.  $(gxcolor2_h) $(gxcspace_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h) $(gxfixed_h) $(gxpcolor_h)\
  2762.  $(estack_h) $(ialloc_h) $(idict_h) $(idparam_h) $(igstate_h) $(istruct_h)\
  2763.  $(store_h)
  2764.  
  2765. zcsindex.$(OBJ): zcsindex.c $(OP) $(memory__h) \
  2766.   $(gscolor_h) $(gsstruct_h) $(gxfixed_h) $(gxcolor2_h) $(gxcspace_h) $(gsmatrix_h) \
  2767.   $(ialloc_h) $(icsmap_h) $(estack_h) $(igstate_h) $(ivmspace_h) $(store_h)
  2768.  
  2769. zht2.$(OBJ): zht2.c $(OP) \
  2770.   $(gsstruct_h) $(gxdevice_h) $(gzht_h) \
  2771.   $(estack_h) $(ialloc_h) $(icolor_h) $(idict_h) $(idparam_h) $(igstate_h) \
  2772.   $(store_h)
  2773.  
  2774. zimage2.$(OBJ): zimage2.c $(OP) $(math__h) $(memory__h)\
  2775.  $(gscolor_h) $(gscolor2_h) $(gscspace_h) $(gsimage_h) $(gsmatrix_h)\
  2776.  $(idict_h) $(idparam_h) $(iimage_h) $(ilevel_h) $(igstate_h)
  2777.  
  2778. # ---------------- Device control ---------------- #
  2779. # This is a catch-all for setpagedevice and IODevices.
  2780.  
  2781. devctrl_=zdevice2.$(OBJ) ziodev2.$(OBJ) zmedia2.$(OBJ) zdevcal.$(OBJ)
  2782. devctrl.dev: $(INT_MAK) $(ECHOGS_XE) $(devctrl_)
  2783.     $(SETMOD) devctrl $(devctrl_)
  2784.     $(ADDMOD) devctrl -oper zdevice2_l2 ziodev2_l2 zmedia2_l2
  2785.     $(ADDMOD) devctrl -iodev null ram calendar
  2786.     $(ADDMOD) devctrl -ps gs_setpd
  2787.  
  2788. zdevice2.$(OBJ): zdevice2.c $(OP) $(math__h) $(memory__h)\
  2789.  $(dstack_h) $(estack_h) $(idict_h) $(idparam_h) $(igstate_h) $(iname_h) $(store_h)\
  2790.  $(gxdevice_h) $(gsstate_h)
  2791.  
  2792. ziodev2.$(OBJ): ziodev2.c $(OP) $(string__h) $(gp_h)\
  2793.  $(gxiodev_h) $(stream_h) $(files_h) $(iparam_h) $(iutil2_h) $(store_h)
  2794.  
  2795. zmedia2.$(OBJ): zmedia2.c $(OP) $(math__h) $(memory__h) \
  2796.   $(gsmatrix_h) $(idict_h) $(idparam_h) $(iname_h) $(store_h)
  2797.  
  2798. zdevcal.$(OBJ): zdevcal.c $(GH) $(time__h) \
  2799.   $(gxiodev_h) $(iparam_h) $(istack_h)
  2800.  
  2801. # ---------------- Filters other than the ones in sfilter.c ---------------- #
  2802.  
  2803. # Standard Level 2 decoding filters only.  The PDF configuration uses this.
  2804. fdecode_=scantab.$(OBJ) sfilter2.$(OBJ) zfdecode.$(OBJ)
  2805. fdecode.dev: $(INT_MAK) $(ECHOGS_XE) $(fdecode_) cfd.dev lzwd.dev pdiff.dev pngp.dev rld.dev
  2806.     $(SETMOD) fdecode $(fdecode_)
  2807.     $(ADDMOD) fdecode -include cfd lzwd pdiff pngp rld
  2808.     $(ADDMOD) fdecode -oper zfdecode
  2809.  
  2810. zfdecode.$(OBJ): zfdecode.c $(OP) $(memory__h)\
  2811.  $(gsstruct_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h) \
  2812.  $(sa85x_h) $(scf_h) $(scfx_h) $(sfilter_h) $(slzwx_h) $(spdiffx_h) $(spngpx_h) \
  2813.  $(store_h) $(stream_h) $(strimpl_h)
  2814.  
  2815. # Complete Level 2 filter capability.
  2816. filter_=zfilter2.$(OBJ)
  2817. filter.dev: $(INT_MAK) $(ECHOGS_XE) fdecode.dev $(filter_) cfe.dev lzwe.dev rle.dev
  2818.     $(SETMOD) filter -include fdecode
  2819.     $(ADDMOD) filter -obj $(filter_)
  2820.     $(ADDMOD) filter -include cfe lzwe rle
  2821.     $(ADDMOD) filter -oper zfilter2
  2822.  
  2823. zfilter2.$(OBJ): zfilter2.c $(OP) $(memory__h)\
  2824.   $(gsstruct_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h) $(store_h) \
  2825.   $(sfilter_h) $(scfx_h) $(slzwx_h) $(spdiffx_h) $(spngpx_h) $(strimpl_h)
  2826.  
  2827. # Extensions beyond Level 2 standard.
  2828. xfilter_=sbhc.$(OBJ) sbwbs.$(OBJ) shcgen.$(OBJ) smtf.$(OBJ) \
  2829.  zfilterx.$(OBJ)
  2830. xfilter.dev: $(INT_MAK) $(ECHOGS_XE) $(xfilter_) pcxd.dev pngp.dev
  2831.     $(SETMOD) xfilter $(xfilter_)
  2832.     $(ADDMOD) xfilter -include pcxd
  2833.     $(ADDMOD) xfilter -oper zfilterx
  2834.  
  2835. sbhc.$(OBJ): sbhc.c $(AK) $(memory__h) $(stdio__h)\
  2836.  $(gdebug_h) $(sbhc_h) $(shcgen_h) $(strimpl_h)
  2837.  
  2838. sbwbs.$(OBJ): sbwbs.c $(AK) $(stdio__h) $(memory__h) \
  2839.   $(gdebug_h) $(sbwbs_h) $(sfilter_h) $(strimpl_h)
  2840.  
  2841. shcgen.$(OBJ): shcgen.c $(AK) $(memory__h) $(stdio__h)\
  2842.  $(gdebug_h) $(gserror_h) $(gserrors_h) $(gsmemory_h)\
  2843.  $(scommon_h) $(shc_h) $(shcgen_h)
  2844.  
  2845. smtf.$(OBJ): smtf.c $(AK) $(stdio__h) \
  2846.   $(smtf_h) $(strimpl_h)
  2847.  
  2848. zfilterx.$(OBJ): zfilterx.c $(OP) $(memory__h)\
  2849.  $(gsstruct_h) $(ialloc_h) $(idict_h) $(idparam_h) $(ifilter_h)\
  2850.  $(store_h) $(sfilter_h) $(sbhc_h) $(sbtx_h) $(sbwbs_h) $(shcgen_h)\
  2851.  $(smtf_h) $(spcxx_h) $(strimpl_h)
  2852.  
  2853. # ---------------- Binary tokens ---------------- #
  2854.  
  2855. btoken_=iscanbin.$(OBJ) zbseq.$(OBJ)
  2856. btoken.dev: $(INT_MAK) $(ECHOGS_XE) $(btoken_)
  2857.     $(SETMOD) btoken $(btoken_)
  2858.     $(ADDMOD) btoken -oper zbseq_l2
  2859.     $(ADDMOD) btoken -ps gs_btokn
  2860.  
  2861. bseq_h=bseq.h
  2862. btoken_h=btoken.h
  2863.  
  2864. iscanbin.$(OBJ): iscanbin.c $(GH) $(math__h) $(memory__h) $(errors_h)\
  2865.  $(gsutil_h) $(ialloc_h) $(ibnum_h) $(idict_h) $(iname_h)\
  2866.  $(iscan_h) $(iutil_h) $(ivmspace_h)\
  2867.  $(bseq_h) $(btoken_h) $(dstack_h) $(ostack_h)\
  2868.  $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  2869.  
  2870. zbseq.$(OBJ): zbseq.c $(OP) $(memory__h)\
  2871.  $(ialloc_h) $(idict_h) $(isave_h)\
  2872.  $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)\
  2873.  $(iname_h) $(ibnum_h) $(btoken_h) $(bseq_h)
  2874.  
  2875. # ---------------- User paths & insideness testing ---------------- #
  2876.  
  2877. upath_=zupath.$(OBJ) ibnum.$(OBJ)
  2878. upath.dev: $(INT_MAK) $(ECHOGS_XE) $(upath_)
  2879.     $(SETMOD) upath $(upath_)
  2880.     $(ADDMOD) upath -oper zupath_l2
  2881.  
  2882. zupath.$(OBJ): zupath.c $(OP) \
  2883.   $(idict_h) $(dstack_h) $(iutil_h) $(igstate_h) $(store_h) $(stream_h) $(ibnum_h) \
  2884.   $(gscoord_h) $(gsmatrix_h) $(gspaint_h) $(gspath_h) $(gsstate_h) \
  2885.   $(gxfixed_h) $(gxdevice_h) $(gzpath_h) $(gzstate_h)
  2886.  
  2887. # -------- Additions common to Display PostScript and Level 2 -------- #
  2888.  
  2889. dpsand2.dev: $(INT_MAK) $(ECHOGS_XE) btoken.dev color.dev upath.dev dps2lib.dev dps2read.dev
  2890.     $(SETMOD) dpsand2 -include btoken color upath dps2lib dps2read
  2891.  
  2892. dps2int_=zvmem2.$(OBJ) zdps1.$(OBJ)
  2893. # Note that zvmem2 includes both Level 1 and Level 2 operators.
  2894. dps2int.dev: $(INT_MAK) $(ECHOGS_XE) $(dps2int_)
  2895.     $(SETMOD) dps2int $(dps2int_)
  2896.     $(ADDMOD) dps2int -oper zvmem2 zdps1_l2
  2897.     $(ADDMOD) dps2int -ps gs_dps1
  2898.  
  2899. dps2read_=ibnum.$(OBJ) zchar2.$(OBJ)
  2900. dps2read.dev: $(INT_MAK) $(ECHOGS_XE) $(dps2read_) dps2int.dev
  2901.     $(SETMOD) dps2read $(dps2read_)
  2902.     $(ADDMOD) dps2read -include dps2int
  2903.     $(ADDMOD) dps2read -oper ireclaim_l2 zchar2_l2
  2904.     $(ADDMOD) dps2read -ps gs_dps2
  2905.  
  2906. ibnum.$(OBJ): ibnum.c $(GH) $(math__h) $(memory__h)\
  2907.  $(errors_h) $(stream_h) $(ibnum_h) $(imemory_h) $(iutil_h)
  2908.  
  2909. zchar2.$(OBJ): zchar2.c $(OP) \
  2910.   $(gschar_h) $(gsmatrix_h) $(gspath_h) $(gsstruct_h) $(gxfixed_h) $(gxfont_h) \
  2911.   $(ialloc_h) $(ichar_h) $(estack_h) $(ifont_h) $(iname_h) $(igstate_h) \
  2912.   $(store_h) $(stream_h) $(ibnum_h)
  2913.  
  2914. zdps1.$(OBJ): zdps1.c $(OP) \
  2915.   $(gsmatrix_h) $(gspath_h) $(gspath2_h) $(gsstate_h) \
  2916.   $(ialloc_h) $(ivmspace_h) $(igstate_h) $(store_h) $(stream_h) $(ibnum_h)
  2917.  
  2918. zvmem2.$(OBJ): zvmem2.c $(OP) \
  2919.   $(estack_h) $(ialloc_h) $(ivmspace_h) $(store_h)
  2920.  
  2921. # ---------------- Display PostScript ---------------- #
  2922.  
  2923. # The context machinery is NOT USABLE in this release.  DO NOT USE IT.
  2924. # IT WILL CAUSE AN IMMEDIATE CRASH.
  2925. #dps_=zdps.$(OBJ) zcontext.$(OBJ)
  2926. dps_=zdps.$(OBJ)
  2927. # Note that zcontext is omitted from the -oper list below.
  2928. dps.dev: $(INT_MAK) $(ECHOGS_XE) level2.dev $(dps_)
  2929.     $(SETMOD) dps -include level2
  2930.     $(ADDMOD) dps -obj $(dps_)
  2931.     $(ADDMOD) dps -oper zdps
  2932.     $(ADDMOD) dps -ps gs_dps
  2933.  
  2934. zdps.$(OBJ): zdps.c $(OP)\
  2935.  $(gsstate_h) $(igstate_h) $(iname_h) $(store_h)
  2936.  
  2937. zcontext.$(OBJ): zcontext.c $(OP) $(gp_h) $(memory__h)\
  2938.  $(gsexit_h) $(gsstruct_h) $(gsutil_h) $(gxalloc_h)\
  2939.  $(icontext_h) $(idict_h) $(igstate_h) $(istruct_h)\
  2940.  $(dstack_h) $(estack_h) $(ostack_h) $(store_h)
  2941.  
  2942. # ---------------- NeXT Display PostScript ---------------- #
  2943. #**************** NOT READY FOR USE YET ****************#
  2944.  
  2945. dpsnext_=zdpnext.$(OBJ)
  2946. dpsnext.dev: $(INT_MAK) $(ECHOGS_XE) dps.dev $(dpsnext_) gs_dpnxt.ps
  2947.     $(SETMOD) dpsnext -include dps
  2948.     $(ADDMOD) dpsnext -obj $(dpsnext_)
  2949.     $(ADDMOD) dpsnext -oper zdpnext
  2950.     $(ADDMOD) dpsnext -ps gs_dpnxt
  2951.  
  2952. zdpnext.$(OBJ): zdpnext.c $(OP)\
  2953.  $(gscspace_h) $(gsiparam_h) $(gsmatrix_h) $(gxcvalue_h) $(gxsample_h)\
  2954.  $(ialloc_h) $(igstate_h) $(iimage_h)
  2955.  
  2956. # -------- Composite (PostScript Type 0) font support -------- #
  2957.  
  2958. compfont.dev: $(INT_MAK) $(ECHOGS_XE) psf0lib.dev psf0read.dev
  2959.     $(SETMOD) compfont -include psf0lib psf0read
  2960.  
  2961. # We always include zfcmap.$(OBJ) because zfont0.c refers to it,
  2962. # and it's not worth the trouble to exclude.
  2963. psf0read_=zchar2.$(OBJ) zfcmap.$(OBJ) zfont0.$(OBJ)
  2964. psf0read.dev: $(INT_MAK) $(ECHOGS_XE) $(psf0read_)
  2965.     $(SETMOD) psf0read $(psf0read_)
  2966.     $(ADDMOD) psf0read -oper zfont0 zchar2 zfcmap
  2967.  
  2968. zfcmap.$(OBJ): zfcmap.c $(OP)\
  2969.  $(gsmatrix_h) $(gsstruct_h) $(gsutil_h)\
  2970.  $(gxfcmap_h) $(gxfont_h)\
  2971.  $(ialloc_h) $(idict_h) $(idparam_h) $(ifont_h) $(iname_h) $(store_h)
  2972.  
  2973. zfont0.$(OBJ): zfont0.c $(OP)\
  2974.  $(gschar_h) $(gsstruct_h)\
  2975.  $(gxdevice_h) $(gxfcmap_h) $(gxfixed_h) $(gxfont_h) $(gxfont0_h) $(gxmatrix_h)\
  2976.  $(gzstate_h)\
  2977.  $(bfont_h) $(ialloc_h) $(idict_h) $(idparam_h) $(igstate_h) $(iname_h)\
  2978.  $(store_h)
  2979.  
  2980. # ---------------- CMap support ---------------- #
  2981. # Note that this requires at least minimal Level 2 support,
  2982. # because it requires findresource.
  2983.  
  2984. cmapread_=zfcmap.$(OBJ)
  2985. cmapread.dev: $(INT_MAK) $(ECHOGS_XE) $(cmapread_) cmaplib.dev psl2int.dev
  2986.     $(SETMOD) cmapread $(cmapread_)
  2987.     $(ADDMOD) cmapread -include cmaplib psl2int
  2988.     $(ADDMOD) cmapread -oper zfcmap
  2989.     $(ADDMOD) cmapread -ps gs_cmap
  2990.  
  2991. # ---------------- CIDFont support ---------------- #
  2992. # Note that this requires at least minimal Level 2 support,
  2993. # because it requires findresource.
  2994.  
  2995. cidread_=zcid.$(OBJ)
  2996. cidfont.dev: $(INT_MAK) $(ECHOGS_XE) psf1read.dev psl2int.dev type42.dev\
  2997.  $(cidread_)
  2998.     $(SETMOD) cidfont $(cidread_)
  2999.     $(ADDMOD) cidfont -include psf1read psl2int type42
  3000.     $(ADDMOD) cidfont -ps gs_cidfn
  3001.     $(ADDMOD) cidfont -oper zcid
  3002.  
  3003. zcid.$(OBJ): zcid.c $(OP)\
  3004.  $(gsccode_h) $(gsmatrix_h) $(gxfont_h)\
  3005.  $(bfont_h) $(iname_h) $(store_h)
  3006.  
  3007. # ---------------- CIE color ---------------- #
  3008.  
  3009. cieread_=zcie.$(OBJ) zcrd.$(OBJ)
  3010. cie.dev: $(INT_MAK) $(ECHOGS_XE) $(cieread_) cielib.dev
  3011.     $(SETMOD) cie $(cieread_)
  3012.     $(ADDMOD) cie -oper zcie_l2 zcrd_l2
  3013.     $(ADDMOD) cie -include cielib
  3014.  
  3015. icie_h=icie.h
  3016.  
  3017. zcie.$(OBJ): zcie.c $(OP) $(math__h) $(memory__h) \
  3018.   $(gscolor2_h) $(gscie_h) $(gsstruct_h) $(gxcspace_h) \
  3019.   $(ialloc_h) $(icie_h) $(idict_h) $(idparam_h) $(estack_h) \
  3020.   $(isave_h) $(igstate_h) $(ivmspace_h) $(store_h)
  3021.  
  3022. zcrd.$(OBJ): zcrd.c $(OP) $(math__h) \
  3023.   $(gscspace_h) $(gscolor2_h) $(gscie_h) $(gsstruct_h) \
  3024.   $(ialloc_h) $(icie_h) $(idict_h) $(idparam_h) $(estack_h) \
  3025.   $(isave_h) $(igstate_h) $(ivmspace_h) $(store_h)
  3026.  
  3027. # ---------------- Pattern color ---------------- #
  3028.  
  3029. pattern.dev: $(INT_MAK) $(ECHOGS_XE) patlib.dev patread.dev
  3030.     $(SETMOD) pattern -include patlib patread
  3031.  
  3032. patread_=zpcolor.$(OBJ)
  3033. patread.dev: $(INT_MAK) $(ECHOGS_XE) $(patread_)
  3034.     $(SETMOD) patread $(patread_)
  3035.     $(ADDMOD) patread -oper zpcolor_l2
  3036.  
  3037. zpcolor.$(OBJ): zpcolor.c $(OP)\
  3038.  $(gscolor_h) $(gsmatrix_h) $(gsstruct_h)\
  3039.  $(gxcolor2_h) $(gxcspace_h) $(gxdcolor_h) $(gxdevice_h) $(gxdevmem_h)\
  3040.    $(gxfixed_h) $(gxpcolor_h)\
  3041.  $(estack_h) $(ialloc_h) $(idict_h) $(idparam_h) $(igstate_h) $(istruct_h)\
  3042.  $(store_h)
  3043.  
  3044. # ---------------- Separation color ---------------- #
  3045.  
  3046. seprread_=zcssepr.$(OBJ)
  3047. sepr.dev: $(INT_MAK) $(ECHOGS_XE) $(seprread_) seprlib.dev
  3048.     $(SETMOD) sepr $(seprread_)
  3049.     $(ADDMOD) sepr -oper zcssepr_l2
  3050.     $(ADDMOD) sepr -include seprlib
  3051.  
  3052. zcssepr.$(OBJ): zcssepr.c $(OP) \
  3053.   $(gscolor_h) $(gscsepr_h) $(gsmatrix_h) $(gsstruct_h) \
  3054.   $(gxcolor2_h) $(gxcspace_h) $(gxfixed_h) \
  3055.   $(ialloc_h) $(icsmap_h) $(estack_h) $(igstate_h) $(ivmspace_h) $(store_h)
  3056.  
  3057. # ---------------- DCT filters ---------------- #
  3058. # The definitions for jpeg*.dev are in jpeg.mak.
  3059.  
  3060. dct.dev: $(INT_MAK) $(ECHOGS_XE) dcte.dev dctd.dev
  3061.     $(SETMOD) dct -include dcte dctd
  3062.  
  3063. # Common code
  3064.  
  3065. dctc_=zfdctc.$(OBJ)
  3066.  
  3067. zfdctc.$(OBJ): zfdctc.c $(GH) $(memory__h) $(stdio__h)\
  3068.  $(errors_h) $(opcheck_h)\
  3069.  $(idict_h) $(idparam_h) $(imemory_h) $(ipacked_h) $(iutil_h)\
  3070.  $(sdct_h) $(sjpeg_h) $(strimpl_h)\
  3071.  jpeglib.h
  3072.  
  3073. # Encoding (compression)
  3074.  
  3075. dcte_=$(dctc_) zfdcte.$(OBJ)
  3076. dcte.dev: $(INT_MAK) $(ECHOGS_XE) sdcte.dev $(dcte_)
  3077.     $(SETMOD) dcte -include sdcte
  3078.     $(ADDMOD) dcte -obj $(dcte_)
  3079.     $(ADDMOD) dcte -oper zfdcte
  3080.  
  3081. zfdcte.$(OBJ): zfdcte.c $(OP) $(memory__h) $(stdio__h)\
  3082.   $(idict_h) $(idparam_h) $(ifilter_h) $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  3083.   jpeglib.h
  3084.  
  3085. # Decoding (decompression)
  3086.  
  3087. dctd_=$(dctc_) zfdctd.$(OBJ)
  3088. dctd.dev: $(INT_MAK) $(ECHOGS_XE) sdctd.dev $(dctd_)
  3089.     $(SETMOD) dctd -include sdctd
  3090.     $(ADDMOD) dctd -obj $(dctd_)
  3091.     $(ADDMOD) dctd -oper zfdctd
  3092.  
  3093. zfdctd.$(OBJ): zfdctd.c $(OP) $(memory__h) $(stdio__h)\
  3094.  $(ifilter_h) $(sdct_h) $(sjpeg_h) $(strimpl_h) \
  3095.  jpeglib.h
  3096.  
  3097. # ---------------- zlib/Flate filters ---------------- #
  3098.  
  3099. fzlib.dev: $(INT_MAK) $(ECHOGS_XE) zfzlib.$(OBJ) szlibe.dev szlibd.dev
  3100.     $(SETMOD) fzlib -include szlibe szlibd
  3101.     $(ADDMOD) fzlib -obj zfzlib.$(OBJ)
  3102.     $(ADDMOD) fzlib -oper zfzlib
  3103.  
  3104. zfzlib.$(OBJ): zfzlib.c $(OP) \
  3105.   $(errors_h) $(idict_h) $(ifilter_h) \
  3106.   $(spdiffx_h) $(spngpx_h) $(strimpl_h) $(szlibx_h)
  3107.     $(CCCZ) $(srcdir)/zfzlib.c
  3108.  
  3109. # ================================ PDF ================================ #
  3110.  
  3111. # We need most of the Level 2 interpreter to do PDF, but not all of it.
  3112. # In fact, we don't even need all of a Level 1 interpreter.
  3113.  
  3114. # Because of the way the PDF encodings are defined, they must get loaded
  3115. # before we install the Level 2 resource machinery.
  3116. # On the other hand, the PDF .ps files must get loaded after
  3117. # level2dict is defined.
  3118. pdfmin.dev: $(INT_MAK) $(ECHOGS_XE)\
  3119.  psbase.dev color.dev dps2lib.dev dps2read.dev\
  3120.  fdecode.dev type1.dev pdffonts.dev psl2lib.dev psl2read.dev pdfread.dev
  3121.     $(SETMOD) pdfmin -include psbase color dps2lib dps2read
  3122.     $(ADDMOD) pdfmin -include fdecode type1
  3123.     $(ADDMOD) pdfmin -include pdffonts psl2lib psl2read pdfread
  3124.     $(ADDMOD) pdfmin -emulator PDF
  3125.  
  3126. pdf.dev: $(INT_MAK) $(ECHOGS_XE)\
  3127.  pdfmin.dev cff.dev cidfont.dev cie.dev compfont.dev cmapread.dev dctd.dev\
  3128.  ttfont.dev type2.dev
  3129.     $(SETMOD) pdf -include pdfmin cff cidfont cie cmapread compfont dctd
  3130.     $(ADDMOD) pdf -include ttfont type2
  3131.  
  3132. # Reader only
  3133.  
  3134. pdffonts.dev: $(INT_MAK) $(ECHOGS_XE) \
  3135.   gs_mex_e.ps gs_mro_e.ps gs_pdf_e.ps gs_wan_e.ps
  3136.     $(SETMOD) pdffonts -ps gs_mex_e gs_mro_e gs_pdf_e gs_wan_e
  3137.  
  3138. # pdf_2ps must be the last .ps file loaded.
  3139. pdfread.dev: $(INT_MAK) $(ECHOGS_XE) fzlib.dev
  3140.     $(SETMOD) pdfread -include fzlib
  3141.     $(ADDMOD) pdfread -ps gs_pdf gs_l2img
  3142.     $(ADDMOD) pdfread -ps pdf_base pdf_draw pdf_font pdf_main pdf_sec
  3143.     $(ADDMOD) pdfread -ps pdf_2ps
  3144.  
  3145. # ============================= Main program ============================== #
  3146.  
  3147. gs.$(OBJ): gs.c $(GH) \
  3148.   $(imain_h) $(imainarg_h) $(iminst_h)
  3149.  
  3150. icontext.$(OBJ): icontext.c $(GH)\
  3151.  $(gsstruct_h) $(gxalloc_h)\
  3152.  $(dstack_h) $(estack_h) $(ostack_h)\
  3153.  $(icontext_h) $(igstate_h) $(store_h)
  3154.  
  3155. imainarg.$(OBJ): imainarg.c $(GH) $(ctype__h) $(memory__h) $(string__h) \
  3156.   $(gp_h) \
  3157.   $(gsargs_h) $(gscdefs_h) $(gsdevice_h) $(gsmdebug_h) $(gxdevice_h) $(gxdevmem_h) \
  3158.   $(errors_h) $(estack_h) $(files_h) \
  3159.   $(ialloc_h) $(imain_h) $(imainarg_h) $(iminst_h) \
  3160.   $(iname_h) $(interp_h) $(iscan_h) $(iutil_h) $(ivmspace_h) \
  3161.   $(ostack_h) $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  3162.  
  3163. imain.$(OBJ): imain.c $(GH) $(memory__h) $(string__h)\
  3164.  $(gp_h) $(gslib_h) $(gsmatrix_h) $(gsutil_h) $(gxdevice_h)\
  3165.  $(dstack_h) $(errors_h) $(estack_h) $(files_h)\
  3166.  $(ialloc_h) $(idebug_h) $(idict_h) $(iname_h) $(interp_h)\
  3167.  $(isave_h) $(iscan_h) $(ivmspace_h)\
  3168.  $(main_h) $(oper_h) $(ostack_h)\
  3169.  $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  3170.  
  3171. interp.$(OBJ): interp.c $(GH) $(memory__h) $(string__h)\
  3172.  $(gsstruct_h)\
  3173.  $(dstack_h) $(errors_h) $(estack_h) $(files_h)\
  3174.  $(ialloc_h) $(iastruct_h) $(inamedef_h) $(idict_h) $(interp_h) $(ipacked_h)\
  3175.  $(iscan_h) $(isave_h) $(istack_h) $(iutil_h) $(ivmspace_h)\
  3176.  $(oper_h) $(ostack_h) $(sfilter_h) $(store_h) $(stream_h) $(strimpl_h)
  3177.     $(CCINT) -I. $(srcdir)/interp.c
  3178.  
  3179. ireclaim.$(OBJ): ireclaim.c $(GH) \
  3180.   $(errors_h) $(gsstruct_h) $(iastate_h) $(opdef_h) $(store_h) \
  3181.   $(dstack_h) $(estack_h) $(ostack_h)
  3182. #    Copyright (C) 1994, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3183. # This file is part of Aladdin Ghostscript.
  3184. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3185. # or distributor accepts any responsibility for the consequences of using it,
  3186. # or for whether it serves any particular purpose or works at all, unless he
  3187. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3188. # License (the "License") for full details.
  3189. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3190. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3191. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3192. # under certain conditions described in the License.  Among other things, the
  3193. # License requires that the copyright notice and this notice be preserved on
  3194. # all copies.
  3195.  
  3196. # makefile for Independent JPEG Group library code.
  3197.  
  3198. # NOTE: This makefile is only known to work with the following versions
  3199. # of the IJG library: 6, 6a.
  3200. # As of May 11, 1996, version 6a is the current version.
  3201. #
  3202. # You can get the IJG library by Internet anonymous FTP from the following
  3203. # places:
  3204. #    Standard distribution (tar + gzip format, Unix end-of-line):
  3205. #        ftp.uu.net:/graphics/jpeg/jpegsrc.v*.tar.gz
  3206. #        ftp.cs.wisc.edu:/ghost/jpegsrc.v*.tar.gz
  3207. #    MS-DOS archive (PKZIP a.k.a. zip format, MS-DOS end-of-line):
  3208. #        ftp.simtel.net:/pub/simtelnet/msdos/graphics/jpegsr*.zip
  3209. #        ftp.cs.wisc.edu:/ghost/jpeg-*.zip
  3210. # The first site named above (ftp.uu.net and ftp.simtel.net) is supposed
  3211. # to be the master distribution site, so it may have a more up-to-date
  3212. # version; the ftp.cs.wisc.edu site is the master distribution site for
  3213. # Ghostscript, so it will always have IJG library versions known to be
  3214. # compatible with Ghostscript.
  3215. #
  3216. # If the version number, and hence the subdirectory name, changes, you
  3217. # will probably want to change the definitions of JSRCDIR and possibly
  3218. # JVERSION (in the platform-specific makefile, not here) to reflect this,
  3219. # since that way you can use the IJG archive without change.
  3220. #
  3221. # NOTE: For some obscure reason (probably a bug in djtarx), if you are
  3222. # compiling on a DesqView/X system, you should use the zip version of the
  3223. # IJG library, not the tar.gz version.
  3224.  
  3225. # Define the name of this makefile.
  3226. JPEG_MAK=jpeg.mak
  3227.  
  3228. # JSRCDIR is defined in the platform-specific makefile, not here,
  3229. # as the directory where the IJG library sources are stored.
  3230. #JSRCDIR=jpeg-6a
  3231. # JVERSION is defined in the platform-specific makefile, not here,
  3232. # as the IJG library major version number (currently "5" or "6").
  3233. #JVERSION=6
  3234.  
  3235. JSRC=$(JSRCDIR)$(D)
  3236. # CCCJ is defined in gs.mak.
  3237. #CCCJ=$(CCC) -I. -I$(JSRCDIR)
  3238.  
  3239. # We keep all of the IJG code in a separate directory so as not to
  3240. # inadvertently mix it up with Aladdin Enterprises' own code.
  3241. # However, we need our own version of jconfig.h, and our own "wrapper" for
  3242. # jmorecfg.h.  We also need a substitute for jerror.c, in order to
  3243. # keep the error strings out of the automatic data segment in
  3244. # 16-bit environments.  For v5*, we also need our own version of jpeglib.h
  3245. # in order to change MAX_BLOCKS_IN_MCU for Adobe compatibility.
  3246. # (This need will go away when IJG v6 is released.)
  3247.  
  3248. # Because this file is included after lib.mak, we can't use _h macros
  3249. # to express indirect dependencies; instead, we build the dependencies
  3250. # into the rules for copying the files.
  3251. jconfig_h=jconfig.h
  3252. jerror_h=jerror.h
  3253. jmorecfg_h=jmorecfg.h
  3254. jpeglib_h=jpeglib.h
  3255.  
  3256. jconfig.h: gsjconf.h $(std_h)
  3257.     $(CP_) $(srcdir)/gsjconf.h jconfig.h
  3258.  
  3259. jmorecfg.h: gsjmorec.h jmcorig.h
  3260.     $(CP_) $(srcdir)/gsjmorec.h jmorecfg.h
  3261.  
  3262. jmcorig.h: $(JSRC)jmorecfg.h
  3263.     $(CP_) $(JSRC)jmorecfg.h jmcorig.h
  3264.  
  3265. jpeglib.h: jlib$(JVERSION).h jconfig.h jmorecfg.h
  3266.     $(CP_) jlib$(JVERSION).h jpeglib.h
  3267.  
  3268. jlib5.h: gsjpglib.h
  3269.     $(CP_) $(srcdir)/gsjpglib.h jlib5.h
  3270.  
  3271. jlib6.h: $(JSRC)jpeglib.h
  3272.     $(CP_) $(JSRC)jpeglib.h jlib6.h
  3273.  
  3274. # To ensure that the compiler finds our versions of jconfig.h and jmorecfg.h,
  3275. # regardless of the compiler's search rule, we must copy up all .c files,
  3276. # and all .h files that include either of these files, directly or
  3277. # indirectly.  The only such .h files currently are jinclude.h and jpeglib.h.
  3278. # (Currently, we supply our own version of jpeglib.h -- see above.)
  3279. # Also, to avoid including the JSRCDIR directory name in our source files,
  3280. # we must also copy up any other .h files that our own code references.
  3281. # Currently, the only such .h files are jerror.h and jversion.h.
  3282.  
  3283. JHCOPY=jinclude.h jpeglib.h jerror.h jversion.h
  3284.  
  3285. jinclude.h: $(JSRC)jinclude.h
  3286.     $(CP_) $(JSRC)jinclude.h jinclude.h
  3287.  
  3288. #jpeglib.h: $(JSRC)jpeglib.h
  3289. #    $(CP_) $(JSRC)jpeglib.h jpeglib.h
  3290.  
  3291. jerror.h: $(JSRC)jerror.h
  3292.     $(CP_) $(JSRC)jerror.h jerror.h
  3293.  
  3294. jversion.h: $(JSRC)jversion.h
  3295.     $(CP_) $(JSRC)jversion.h jversion.h
  3296.  
  3297. # In order to avoid having to keep the dependency lists for the IJG code
  3298. # accurate, we simply make all of them depend on the only files that
  3299. # we are ever going to change, and on all the .h files that must be copied up.
  3300. # This is too conservative, but only hurts us if we are changing our own
  3301. # j*.h files, which happens only rarely during development.
  3302.  
  3303. JDEP=$(AK) $(jconfig_h) $(jerror_h) $(jmorecfg_h) $(JHCOPY)
  3304.  
  3305. # Code common to compression and decompression.
  3306.  
  3307. jpegc_=jcomapi.$(OBJ) jutils.$(OBJ) sjpegerr.$(OBJ) jmemmgr.$(OBJ)
  3308. jpegc.dev: $(JPEG_MAK) $(ECHOGS_XE) $(jpegc_)
  3309.     $(SETMOD) jpegc $(jpegc_)
  3310.  
  3311. jcomapi.$(OBJ): $(JSRC)jcomapi.c $(JDEP)
  3312.     $(CP_) $(JSRC)jcomapi.c .
  3313.     $(CCCJ) jcomapi.c
  3314.     $(RM_) jcomapi.c
  3315.  
  3316. jutils.$(OBJ): $(JSRC)jutils.c $(JDEP)
  3317.     $(CP_) $(JSRC)jutils.c .
  3318.     $(CCCJ) jutils.c
  3319.     $(RM_) jutils.c
  3320.  
  3321. # Note that sjpegerr replaces jerror.
  3322. sjpegerr.$(OBJ): $(srcdir)/sjpegerr.c $(JDEP)
  3323.     $(CCCF) -I. -I$(srcdir) $(srcdir)/sjpegerr.c
  3324.  
  3325. jmemmgr.$(OBJ): $(JSRC)jmemmgr.c $(JDEP)
  3326.     $(CP_) $(JSRC)jmemmgr.c .
  3327.     $(CCCJ) jmemmgr.c
  3328.     $(RM_) jmemmgr.c
  3329.  
  3330. # Encoding (compression) code.
  3331.  
  3332. jpege.dev: jpege$(JVERSION).dev
  3333.     $(CP_) jpege$(JVERSION).dev jpege.dev
  3334.  
  3335. jpege5=jcapi.$(OBJ)
  3336. jpege6=jcapimin.$(OBJ) jcapistd.$(OBJ) jcinit.$(OBJ)
  3337.  
  3338. jpege_1=jccoefct.$(OBJ) jccolor.$(OBJ) jcdctmgr.$(OBJ) 
  3339. jpege_2=jchuff.$(OBJ) jcmainct.$(OBJ) jcmarker.$(OBJ) jcmaster.$(OBJ)
  3340. jpege_3=jcparam.$(OBJ) jcprepct.$(OBJ) jcsample.$(OBJ) jfdctint.$(OBJ)
  3341.  
  3342. jpege5.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpege5) $(jpege_1) $(jpege_2) $(jpege_3)
  3343.     $(SETMOD) jpege5 $(jpege5)
  3344.     $(ADDMOD) jpege5 -include jpegc
  3345.     $(ADDMOD) jpege5 -obj $(jpege_1)
  3346.     $(ADDMOD) jpege5 -obj $(jpege_2)
  3347.     $(ADDMOD) jpege5 -obj $(jpege_3)
  3348.  
  3349. jpege6.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpege6) $(jpege_1) $(jpege_2) $(jpege_3)
  3350.     $(SETMOD) jpege6 $(jpege6)
  3351.     $(ADDMOD) jpege6 -include jpegc
  3352.     $(ADDMOD) jpege6 -obj $(jpege_1)
  3353.     $(ADDMOD) jpege6 -obj $(jpege_2)
  3354.     $(ADDMOD) jpege6 -obj $(jpege_3)
  3355.  
  3356. # jcapi.c is v5* only
  3357. jcapi.$(OBJ): $(JSRC)jcapi.c $(JDEP)
  3358.     $(CP_) $(JSRC)jcapi.c .
  3359.     $(CCCJ) jcapi.c
  3360.     $(RM_) jcapi.c
  3361.   
  3362. # jcapimin.c is new in v6
  3363. jcapimin.$(OBJ): $(JSRC)jcapimin.c $(JDEP)
  3364.     $(CP_) $(JSRC)jcapimin.c .
  3365.     $(CCCJ) jcapimin.c
  3366.     $(RM_) jcapimin.c
  3367.  
  3368. # jcapistd.c is new in v6
  3369. jcapistd.$(OBJ): $(JSRC)jcapistd.c $(JDEP)
  3370.     $(CP_) $(JSRC)jcapistd.c .
  3371.     $(CCCJ) jcapistd.c
  3372.     $(RM_) jcapistd.c
  3373.  
  3374. # jcinit.c is new in v6
  3375. jcinit.$(OBJ): $(JSRC)jcinit.c $(JDEP)
  3376.     $(CP_) $(JSRC)jcinit.c .
  3377.     $(CCCJ) jcinit.c
  3378.     $(RM_) jcinit.c
  3379.  
  3380. jccoefct.$(OBJ): $(JSRC)jccoefct.c $(JDEP)
  3381.     $(CP_) $(JSRC)jccoefct.c .
  3382.     $(CCCJ) jccoefct.c
  3383.     $(RM_) jccoefct.c
  3384.  
  3385. jccolor.$(OBJ): $(JSRC)jccolor.c $(JDEP)
  3386.     $(CP_) $(JSRC)jccolor.c .
  3387.     $(CCCJ) jccolor.c
  3388.     $(RM_) jccolor.c
  3389.  
  3390. jcdctmgr.$(OBJ): $(JSRC)jcdctmgr.c $(JDEP)
  3391.     $(CP_) $(JSRC)jcdctmgr.c .
  3392.     $(CCCJ) jcdctmgr.c
  3393.     $(RM_) jcdctmgr.c
  3394.  
  3395. jchuff.$(OBJ): $(JSRC)jchuff.c $(JDEP)
  3396.     $(CP_) $(JSRC)jchuff.c .
  3397.     $(CCCJ) jchuff.c
  3398.     $(RM_) jchuff.c
  3399.  
  3400. jcmainct.$(OBJ): $(JSRC)jcmainct.c $(JDEP)
  3401.     $(CP_) $(JSRC)jcmainct.c .
  3402.     $(CCCJ) jcmainct.c
  3403.     $(RM_) jcmainct.c
  3404.  
  3405. jcmarker.$(OBJ): $(JSRC)jcmarker.c $(JDEP)
  3406.     $(CP_) $(JSRC)jcmarker.c .
  3407.     $(CCCJ) jcmarker.c
  3408.     $(RM_) jcmarker.c
  3409.  
  3410. jcmaster.$(OBJ): $(JSRC)jcmaster.c $(JDEP)
  3411.     $(CP_) $(JSRC)jcmaster.c .
  3412.     $(CCCJ) jcmaster.c
  3413.     $(RM_) jcmaster.c
  3414.  
  3415. jcparam.$(OBJ): $(JSRC)jcparam.c $(JDEP)
  3416.     $(CP_) $(JSRC)jcparam.c .
  3417.     $(CCCJ) jcparam.c
  3418.     $(RM_) jcparam.c
  3419.  
  3420. jcprepct.$(OBJ): $(JSRC)jcprepct.c $(JDEP)
  3421.     $(CP_) $(JSRC)jcprepct.c .
  3422.     $(CCCJ) jcprepct.c
  3423.     $(RM_) jcprepct.c
  3424.  
  3425. jcsample.$(OBJ): $(JSRC)jcsample.c $(JDEP)
  3426.     $(CP_) $(JSRC)jcsample.c .
  3427.     $(CCCJ) jcsample.c
  3428.     $(RM_) jcsample.c
  3429.  
  3430. jfdctint.$(OBJ): $(JSRC)jfdctint.c $(JDEP)
  3431.     $(CP_) $(JSRC)jfdctint.c .
  3432.     $(CCCJ) jfdctint.c
  3433.     $(RM_) jfdctint.c
  3434.  
  3435. # Decompression code
  3436.  
  3437. jpegd.dev: jpegd$(JVERSION).dev
  3438.     $(CP_) jpegd$(JVERSION).dev jpegd.dev
  3439.  
  3440. jpegd5=jdapi.$(OBJ)
  3441. jpegd6=jdapimin.$(OBJ) jdapistd.$(OBJ) jdinput.$(OBJ) jdphuff.$(OBJ)
  3442.  
  3443. jpegd_1=jdcoefct.$(OBJ) jdcolor.$(OBJ)
  3444. jpegd_2=jddctmgr.$(OBJ) jdhuff.$(OBJ) jdmainct.$(OBJ) jdmarker.$(OBJ)
  3445. jpegd_3=jdmaster.$(OBJ) jdpostct.$(OBJ) jdsample.$(OBJ) jidctint.$(OBJ)
  3446.  
  3447. jpegd5.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpegd5) $(jpegd_1) $(jpegd_2) $(jpegd_3)
  3448.     $(SETMOD) jpegd5 $(jpegd5)
  3449.     $(ADDMOD) jpegd5 -include jpegc
  3450.     $(ADDMOD) jpegd5 -obj $(jpegd_1)
  3451.     $(ADDMOD) jpegd5 -obj $(jpegd_2)
  3452.     $(ADDMOD) jpegd5 -obj $(jpegd_3)
  3453.  
  3454. jpegd6.dev: $(JPEG_MAK) $(ECHOGS_XE) jpegc.dev $(jpegd6) $(jpegd_1) $(jpegd_2) $(jpegd_3)
  3455.     $(SETMOD) jpegd6 $(jpegd6)
  3456.     $(ADDMOD) jpegd6 -include jpegc
  3457.     $(ADDMOD) jpegd6 -obj $(jpegd_1)
  3458.     $(ADDMOD) jpegd6 -obj $(jpegd_2)
  3459.     $(ADDMOD) jpegd6 -obj $(jpegd_3)
  3460.  
  3461. # jdapi.c is v5* only
  3462. jdapi.$(OBJ): $(JSRC)jdapi.c $(JDEP)
  3463.     $(CP_) $(JSRC)jdapi.c .
  3464.     $(CCCJ) jdapi.c
  3465.     $(RM_) jdapi.c
  3466.  
  3467. # jdapimin.c is new in v6
  3468. jdapimin.$(OBJ): $(JSRC)jdapimin.c $(JDEP)
  3469.     $(CP_) $(JSRC)jdapimin.c .
  3470.     $(CCCJ) jdapimin.c
  3471.     $(RM_) jdapimin.c
  3472.  
  3473. # jdapistd.c is new in v6
  3474. jdapistd.$(OBJ): $(JSRC)jdapistd.c $(JDEP)
  3475.     $(CP_) $(JSRC)jdapistd.c .
  3476.     $(CCCJ) jdapistd.c
  3477.     $(RM_) jdapistd.c
  3478.  
  3479. jdcoefct.$(OBJ): $(JSRC)jdcoefct.c $(JDEP)
  3480.     $(CP_) $(JSRC)jdcoefct.c .
  3481.     $(CCCJ) jdcoefct.c
  3482.     $(RM_) jdcoefct.c
  3483.  
  3484. jdcolor.$(OBJ): $(JSRC)jdcolor.c $(JDEP)
  3485.     $(CP_) $(JSRC)jdcolor.c .
  3486.     $(CCCJ) jdcolor.c
  3487.     $(RM_) jdcolor.c
  3488.  
  3489. jddctmgr.$(OBJ): $(JSRC)jddctmgr.c $(JDEP)
  3490.     $(CP_) $(JSRC)jddctmgr.c .
  3491.     $(CCCJ) jddctmgr.c
  3492.     $(RM_) jddctmgr.c
  3493.  
  3494. jdhuff.$(OBJ): $(JSRC)jdhuff.c $(JDEP)
  3495.     $(CP_) $(JSRC)jdhuff.c .
  3496.     $(CCCJ) jdhuff.c
  3497.     $(RM_) jdhuff.c
  3498.  
  3499. # jdinput.c is new in v6
  3500. jdinput.$(OBJ): $(JSRC)jdinput.c $(JDEP)
  3501.     $(CP_) $(JSRC)jdinput.c .
  3502.     $(CCCJ) jdinput.c
  3503.     $(RM_) jdinput.c
  3504.  
  3505. jdmainct.$(OBJ): $(JSRC)jdmainct.c $(JDEP)
  3506.     $(CP_) $(JSRC)jdmainct.c .
  3507.     $(CCCJ) jdmainct.c
  3508.     $(RM_) jdmainct.c
  3509.  
  3510. jdmarker.$(OBJ): $(JSRC)jdmarker.c $(JDEP)
  3511.     $(CP_) $(JSRC)jdmarker.c .
  3512.     $(CCCJ) jdmarker.c
  3513.     $(RM_) jdmarker.c
  3514.  
  3515. jdmaster.$(OBJ): $(JSRC)jdmaster.c $(JDEP)
  3516.     $(CP_) $(JSRC)jdmaster.c .
  3517.     $(CCCJ) jdmaster.c
  3518.     $(RM_) jdmaster.c
  3519.  
  3520. # jdphuff.c is new in v6
  3521. jdphuff.$(OBJ): $(JSRC)jdphuff.c $(JDEP)
  3522.     $(CP_) $(JSRC)jdphuff.c .
  3523.     $(CCCJ) jdphuff.c
  3524.     $(RM_) jdphuff.c
  3525.  
  3526. jdpostct.$(OBJ): $(JSRC)jdpostct.c $(JDEP)
  3527.     $(CP_) $(JSRC)jdpostct.c .
  3528.     $(CCCJ) jdpostct.c
  3529.     $(RM_) jdpostct.c
  3530.  
  3531. jdsample.$(OBJ): $(JSRC)jdsample.c $(JDEP)
  3532.     $(CP_) $(JSRC)jdsample.c .
  3533.     $(CCCJ) jdsample.c
  3534.     $(RM_) jdsample.c
  3535.  
  3536. jidctint.$(OBJ): $(JSRC)jidctint.c $(JDEP)
  3537.     $(CP_) $(JSRC)jidctint.c .
  3538.     $(CCCJ) jidctint.c
  3539.     $(RM_) jidctint.c
  3540. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3541. # This file is part of Aladdin Ghostscript.
  3542. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3543. # or distributor accepts any responsibility for the consequences of using it,
  3544. # or for whether it serves any particular purpose or works at all, unless he
  3545. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3546. # License (the "License") for full details.
  3547. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3548. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3549. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3550. # under certain conditions described in the License.  Among other things, the
  3551. # License requires that the copyright notice and this notice be preserved on
  3552. # all copies.
  3553.  
  3554. # makefile for PNG (Portable Network Graphics) code.
  3555.  
  3556. # This partial makefile compiles the png library for use in the Ghostscript
  3557. # PNG drivers.  You can get the source code for this library from:
  3558. #   ftp://swrinde.nde.swri.edu/pub/png/src/
  3559. # The makefile is known to work with the following library versions:
  3560. # 0.88, 0.89, 0.90, 0.95, and 0.96.  NOTE: the archive for libpng 0.95 may
  3561. # be inconsistent: if you have compilation problems, use an older version.
  3562. # Please see Ghostscript's `make.txt' file for instructions about how to
  3563. # unpack these archives.
  3564. #
  3565. # The specification for the PNG file format is available from:
  3566. #   http://www.group42.com/png.htm
  3567. #   http://www.w3.org/pub/WWW/TR/WD-png
  3568.  
  3569. # Define the name of this makefile.
  3570. LIBPNG_MAK=libpng.mak
  3571.  
  3572. # PSRCDIR is defined in the platform-specific makefile, not here,
  3573. # as the directory where the PNG library sources are stored.
  3574. #PSRCDIR=libpng
  3575. # PVERSION is defined in the platform-specific makefile, not here,
  3576. # as the libpng version number ("88", "89", "90", "95", or "96").
  3577. #PVERSION=96
  3578.  
  3579. PSRC=$(PSRCDIR)$(D)
  3580. # CCCP is defined in gs.mak.
  3581. #CCCP=$(CCC) -I$(PSRCDIR) -I$(ZSRCDIR)
  3582.  
  3583. # We keep all of the PNG code in a separate directory so as not to
  3584. # inadvertently mix it up with Aladdin Enterprises' own code.
  3585. PDEP=$(AK)
  3586.  
  3587. png_1=png.$(OBJ) pngmem.$(OBJ) pngerror.$(OBJ)
  3588. png_2=pngtrans.$(OBJ) pngwrite.$(OBJ) pngwtran.$(OBJ) pngwutil.$(OBJ)
  3589.  
  3590. # libpng modules
  3591.  
  3592. png.$(OBJ): $(PSRC)png.c $(PDEP)
  3593.     $(CCCP) $(PSRC)png.c
  3594.  
  3595. # version 0.88 uses pngio.c
  3596. pngio.$(OBJ): $(PSRC)pngio.c $(PDEP)
  3597.     $(CCCP) $(PSRC)pngio.c
  3598.  
  3599. # version 0.89 uses pngwio.c
  3600. pngwio.$(OBJ): $(PSRC)pngwio.c $(PDEP)
  3601.     $(CCCP) $(PSRC)pngwio.c
  3602.  
  3603. pngmem.$(OBJ): $(PSRC)pngmem.c $(PDEP)
  3604.     $(CCCP) $(PSRC)pngmem.c
  3605.  
  3606. pngerror.$(OBJ): $(PSRC)pngerror.c $(PDEP)
  3607.     $(CCCP) $(PSRC)pngerror.c
  3608.  
  3609. pngtrans.$(OBJ): $(PSRC)pngtrans.c $(PDEP)
  3610.     $(CCCP) $(PSRC)pngtrans.c
  3611.  
  3612. pngwrite.$(OBJ): $(PSRC)pngwrite.c $(PDEP)
  3613.     $(CCCP) $(PSRC)pngwrite.c
  3614.  
  3615. pngwtran.$(OBJ): $(PSRC)pngwtran.c $(PDEP)
  3616.     $(CCCP) $(PSRC)pngwtran.c
  3617.  
  3618. pngwutil.$(OBJ): $(PSRC)pngwutil.c $(PDEP)
  3619.     $(CCCP) $(PSRC)pngwutil.c
  3620.  
  3621. # Define the version of libpng.dev that we are actually using.
  3622. libpng.dev: $(MAKEFILE) libpng_$(SHARE_LIBPNG).dev
  3623.     $(CP_) libpng_$(SHARE_LIBPNG).dev libpng.dev
  3624.  
  3625. # Define the shared version of libpng.
  3626. libpng_1.dev: $(MAKEFILE) $(LIBPNG_MAK) $(ECHOGS_XE)
  3627.     $(SETMOD) libpng_1 -lib $(LIBPNG_NAME)
  3628.  
  3629. # Define the non-shared version of libpng.
  3630. libpng_0.dev: $(LIBPNG_MAK) $(ECHOGS_XE) $(png_1) $(png_2)\
  3631.  zlibe.dev libpng$(PVERSION).dev
  3632.     $(SETMOD) libpng_0 $(png_1)
  3633.     $(ADDMOD) libpng_0 $(png_2)
  3634.     $(ADDMOD) libpng_0 -include zlibe libpng$(PVERSION)
  3635.  
  3636. libpng88.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngio.$(OBJ)
  3637.     $(SETMOD) libpng88 pngio.$(OBJ)
  3638.  
  3639. libpng89.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ)
  3640.     $(SETMOD) libpng89 pngwio.$(OBJ)
  3641.  
  3642. libpng90.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ) crc32.dev
  3643.     $(SETMOD) libpng90 pngwio.$(OBJ) -include crc32
  3644.  
  3645. libpng95.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ) crc32.dev
  3646.     $(SETMOD) libpng95 pngwio.$(OBJ) -include crc32
  3647.  
  3648. libpng96.dev: $(LIBPNG_MAK) $(ECHOGS_XE) pngwio.$(OBJ) crc32.dev
  3649.     $(SETMOD) libpng96 pngwio.$(OBJ) -include crc32
  3650. #    Copyright (C) 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3651. # This file is part of Aladdin Ghostscript.
  3652. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3653. # or distributor accepts any responsibility for the consequences of using it,
  3654. # or for whether it serves any particular purpose or works at all, unless he
  3655. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3656. # License (the "License") for full details.
  3657. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3658. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3659. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3660. # under certain conditions described in the License.  Among other things, the
  3661. # License requires that the copyright notice and this notice be preserved on
  3662. # all copies.
  3663.  
  3664. # makefile for zlib library code.
  3665.  
  3666. # This partial makefile compiles the zlib library for use in Ghostscript.
  3667. # You can get the source code for this library from:
  3668. #   ftp://ftp.uu.net/pub/archiving/zip/zlib/zlib104.zip   (zlib 1.0.4)
  3669. #        or zlib-1.0.4.tar.gz
  3670. # Please see Ghostscript's `make.txt' file for instructions about how to
  3671. # unpack these archives.
  3672.  
  3673. # Define the name of this makefile.
  3674. ZLIB_MAK=zlib.mak
  3675.  
  3676. # ZSRCDIR is defined in the platform-specific makefile, not here,
  3677. # as the directory where the zlib sources are stored.
  3678. #ZSRCDIR=zlib
  3679. ZSRC=$(ZSRCDIR)$(D)
  3680. # We would like to define
  3681. #CCCZ=$(CCC) -I$(ZSRCDIR) -Dverbose=-1
  3682. # but the Watcom C compiler has strange undocumented restrictions on what can
  3683. # follow a -D=, and it doesn't allow negative numbers.  Instead, we define
  3684. # (in gs.mak):
  3685. #CCCZ=$(CCC) -I. -I$(ZSRCDIR)
  3686. # and handle the definition of verbose in a different, more awkward way.
  3687.  
  3688. # We keep all of the zlib code in a separate directory so as not to
  3689. # inadvertently mix it up with Aladdin Enterprises' own code.
  3690. ZDEP=$(AK)
  3691.  
  3692. # Contrary to what some portability bigots assert as fact, C compilers are
  3693. # not consistent about where they start searching for #included files:
  3694. # some always start by looking in the same directory as the .c file being
  3695. # compiled, before using the search path specified with -I on the command
  3696. # line, while others do not do this.  For this reason, we must explicitly
  3697. # copy and then delete all the .c files, because they need to obtain our
  3698. # modified version of zutil.h.  We must also copy all header files that
  3699. # reference zutil.h directly or indirectly.
  3700.  
  3701. # Code common to compression and decompression.
  3702.  
  3703. zlibc_=zutil.$(OBJ)
  3704. zlibc.dev: $(ZLIB_MAK) $(ECHOGS_XE) $(zlibc_)
  3705.     $(SETMOD) zlibc $(zlibc_)
  3706.  
  3707. zutil.h: $(ZSRC)zutil.h $(ECHOGS_XE)
  3708.     $(EXP)echogs -w zutil.h -x 23 define verbose -s - -1
  3709.     $(EXP)echogs -a zutil.h -+R $(ZSRC)zutil.h
  3710.  
  3711. zutil.$(OBJ): $(ZSRC)zutil.c $(ZDEP) zutil.h
  3712.     $(CP_) $(ZSRC)zutil.c .
  3713.     $(CCCZ) zutil.c
  3714.     $(RM_) zutil.c
  3715.  
  3716. # Encoding (compression) code.
  3717.  
  3718. deflate.h: $(ZSRC)deflate.h zutil.h
  3719.     $(CP_) $(ZSRC)deflate.h deflate.h
  3720.  
  3721. zlibe.dev: $(MAKEFILE) zlibe_$(SHARE_ZLIB).dev
  3722.     $(CP_) zlibe_$(SHARE_ZLIB).dev zlibe.dev
  3723.  
  3724. zlibe_1.dev: $(MAKEFILE) $(ZLIB_MAK) $(ECHOGS_XE)
  3725.     $(SETMOD) zlibe_1 -lib $(ZLIB_NAME)
  3726.  
  3727. zlibe_=adler32.$(OBJ) deflate.$(OBJ) trees.$(OBJ)
  3728. zlibe_0.dev: $(ZLIB_MAK) $(ECHOGS_XE) zlibc.dev $(zlibe_)
  3729.     $(SETMOD) zlibe_0 $(zlibe_)
  3730.     $(ADDMOD) zlibe_0 -include zlibc
  3731.  
  3732. adler32.$(OBJ): $(ZSRC)adler32.c $(ZDEP)
  3733.     $(CP_) $(ZSRC)adler32.c .
  3734.     $(CCCZ) adler32.c
  3735.     $(RM_) adler32.c
  3736.  
  3737. deflate.$(OBJ): $(ZSRC)deflate.c $(ZDEP) deflate.h
  3738.     $(CP_) $(ZSRC)deflate.c .
  3739.     $(CCCZ) deflate.c
  3740.     $(RM_) deflate.c
  3741.  
  3742. trees.$(OBJ): $(ZSRC)trees.c $(ZDEP) deflate.h
  3743.     $(CP_) $(ZSRC)trees.c .
  3744.     $(CCCZ) trees.c
  3745.     $(RM_) trees.c
  3746.  
  3747. # The zlib filters per se don't need crc32, but libpng versions starting
  3748. # with 0.90 do.
  3749.  
  3750. crc32.dev: $(MAKEFILE) crc32_$(SHARE_ZLIB).dev
  3751.     $(CP_) crc32_$(SHARE_ZLIB).dev crc32.dev
  3752.  
  3753. crc32_1.dev: $(MAKEFILE) $(ZLIB_MAK) $(ECHOGS_XE)
  3754.     $(SETMOD) crc32_1 -lib $(ZLIB_NAME)
  3755.  
  3756. crc32_0.dev: $(ZLIB_MAK) $(ECHOGS_XE) crc32.$(OBJ)
  3757.     $(SETMOD) crc32_0 crc32.$(OBJ)
  3758.  
  3759. crc32.$(OBJ): $(ZSRC)crc32.c $(ZDEP) deflate.h
  3760.     $(CP_) $(ZSRC)crc32.c .
  3761.     $(CCCZ) crc32.c
  3762.     $(RM_) crc32.c
  3763.  
  3764. # Decoding (decompression) code.
  3765.  
  3766. zlibd.dev: $(MAKEFILE) zlibd_$(SHARE_ZLIB).dev
  3767.     $(CP_) zlibd_$(SHARE_ZLIB).dev zlibd.dev
  3768.  
  3769. zlibd_1.dev: $(MAKEFILE) $(ZLIB_MAK) $(ECHOGS_XE)
  3770.     $(SETMOD) zlibd_1 -lib $(ZLIB_NAME)
  3771.  
  3772. zlibd1_=infblock.$(OBJ) infcodes.$(OBJ) inffast.$(OBJ)
  3773. zlibd2_=inflate.$(OBJ) inftrees.$(OBJ) infutil.$(OBJ)
  3774. zlibd_ = $(zlibd1_) $(zlibd2_)
  3775. zlibd_0.dev: $(ZLIB_MAK) $(ECHOGS_XE) zlibc.dev $(zlibd_)
  3776.     $(SETMOD) zlibd_0 $(zlibd1_)
  3777.     $(ADDMOD) zlibd_0 -obj $(zlibd2_)
  3778.     $(ADDMOD) zlibd_0 -include zlibc
  3779.  
  3780. infblock.$(OBJ): $(ZSRC)infblock.c $(ZDEP) zutil.h
  3781.     $(CP_) $(ZSRC)infblock.c .
  3782.     $(CCCZ) infblock.c
  3783.     $(RM_) infblock.c
  3784.  
  3785. infcodes.$(OBJ): $(ZSRC)infcodes.c $(ZDEP) zutil.h
  3786.     $(CP_) $(ZSRC)infcodes.c .
  3787.     $(CCCZ) infcodes.c
  3788.     $(RM_) infcodes.c
  3789.  
  3790. inffast.$(OBJ): $(ZSRC)inffast.c $(ZDEP) zutil.h
  3791.     $(CP_) $(ZSRC)inffast.c .
  3792.     $(CCCZ) inffast.c
  3793.     $(RM_) inffast.c
  3794.  
  3795. inflate.$(OBJ): $(ZSRC)inflate.c $(ZDEP) zutil.h
  3796.     $(CP_) $(ZSRC)inflate.c .
  3797.     $(CCCZ) inflate.c
  3798.     $(RM_) inflate.c
  3799.  
  3800. inftrees.$(OBJ): $(ZSRC)inftrees.c $(ZDEP) zutil.h
  3801.     $(CP_) $(ZSRC)inftrees.c .
  3802.     $(CCCZ) inftrees.c
  3803.     $(RM_) inftrees.c
  3804.  
  3805. infutil.$(OBJ): $(ZSRC)infutil.c $(ZDEP) zutil.h
  3806.     $(CP_) $(ZSRC)infutil.c .
  3807.     $(CCCZ) infutil.c
  3808.     $(RM_) infutil.c
  3809. #    Copyright (C) 1989, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  3810. # This file is part of Aladdin Ghostscript.
  3811. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  3812. # or distributor accepts any responsibility for the consequences of using it,
  3813. # or for whether it serves any particular purpose or works at all, unless he
  3814. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  3815. # License (the "License") for full details.
  3816. # Every copy of Aladdin Ghostscript must include a copy of the License,
  3817. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  3818. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  3819. # under certain conditions described in the License.  Among other things, the
  3820. # License requires that the copyright notice and this notice be preserved on
  3821. # all copies.
  3822.  
  3823. # makefile for device drivers.
  3824.  
  3825. # Define the name of this makefile.
  3826. DEVS_MAK=devs.mak
  3827.  
  3828. ###### --------------------------- Catalog -------------------------- ######
  3829.  
  3830. # It is possible to build configurations with an arbitrary collection of
  3831. # device drivers, although some drivers are supported only on a subset
  3832. # of the target platforms.  The currently available drivers are:
  3833.  
  3834. # MS-DOS displays (note: not usable with Desqview/X):
  3835. #   MS-DOS EGA and VGA:
  3836. #    ega    EGA (640x350, 16-color)
  3837. #    vga    VGA (640x480, 16-color)
  3838. #   MS-DOS SuperVGA:
  3839. # *    ali    SuperVGA using Avance Logic Inc. chipset, 256-color modes
  3840. # *    atiw    ATI Wonder SuperVGA, 256-color modes
  3841. # *    s3vga    SuperVGA using S3 86C911 chip (e.g., Diamond Stealth board)
  3842. #    svga16    Generic SuperVGA in 800x600, 16-color mode
  3843. # *    tseng    SuperVGA using Tseng Labs ET3000/4000 chips, 256-color modes
  3844. # *    tvga    SuperVGA using Trident chipset, 256-color modes
  3845. #   ****** NOTE: The vesa device does not work with the Watcom (32-bit MS-DOS)
  3846. #   ****** compiler or executable.
  3847. #    vesa    SuperVGA with VESA standard API driver
  3848. #   MS-DOS other:
  3849. #    bgi    Borland Graphics Interface (CGA)  [MS-DOS only]
  3850. # *    herc    Hercules Graphics display   [MS-DOS only]
  3851. # *    pe    Private Eye display
  3852. # Other displays:
  3853. #   MS Windows:
  3854. #    mswindll  Microsoft Windows 3.1 DLL  [MS Windows only]
  3855. #    mswinprn  Microsoft Windows 3.0, 3.1 DDB printer  [MS Windows only]
  3856. #    mswinpr2  Microsoft Windows 3.0, 3.1 DIB printer  [MS Windows only]
  3857. #   OS/2:
  3858. # *    os2pm    OS/2 Presentation Manager   [OS/2 only]
  3859. # *    os2dll    OS/2 DLL bitmap             [OS/2 only]
  3860. # *    os2prn    OS/2 printer                [OS/2 only]
  3861. #   Unix and VMS:
  3862. #   ****** NOTE: For direct frame buffer addressing under SCO Unix or Xenix,
  3863. #   ****** edit the definition of EGAVGA below.
  3864. # *    att3b1    AT&T 3b1/Unixpc monochrome display   [3b1 only]
  3865. # *    lvga256  Linux vgalib, 256-color VGA modes  [Linux only]
  3866. # *    sonyfb    Sony Microsystems monochrome display   [Sony only]
  3867. # *    sunview  SunView window system   [SunOS only]
  3868. # +    vgalib    Linux PC with VGALIB   [Linux only]
  3869. #    x11    X Windows version 11, release >=4   [Unix and VMS only]
  3870. #    x11alpha  X Windows masquerading as a device with alpha capability
  3871. #    x11cmyk  X Windows masquerading as a 1-bit-per-plane CMYK device
  3872. #    x11gray2  X Windows as a 2-bit gray-scale device
  3873. #    x11mono  X Windows masquerading as a black-and-white device
  3874. #   Platform-independent:
  3875. # *    sxlcrt    CRT sixels, e.g. for VT240-like terminals
  3876. # Printers:
  3877. # *    ap3250    Epson AP3250 printer
  3878. # *    appledmp  Apple Dot Matrix Printer (should also work with Imagewriter)
  3879. #    bj10e    Canon BubbleJet BJ10e
  3880. # *    bj200    Canon BubbleJet BJ200
  3881. # *    bjc600   Canon Color BubbleJet BJC-600, BJC-4000 and BJC-70
  3882. #               also good for Apple printers like the StyleWriter 2x00
  3883. # *    bjc800   Canon Color BubbleJet BJC-800
  3884. # *     ccr     CalComp Raster format
  3885. # *    cdeskjet  H-P DeskJet 500C with 1 bit/pixel color
  3886. # *    cdjcolor  H-P DeskJet 500C with 24 bit/pixel color and
  3887. #        high-quality color (Floyd-Steinberg) dithering;
  3888. #        also good for DeskJet 540C and Citizen Projet IIc (-r200x300)
  3889. # *    cdjmono  H-P DeskJet 500C printing black only;
  3890. #        also good for DeskJet 510, 520, and 540C (black only)
  3891. # *    cdj500    H-P DeskJet 500C (same as cdjcolor)
  3892. # *    cdj550    H-P DeskJet 550C/560C
  3893. # *    cp50    Mitsubishi CP50 color printer
  3894. # *    declj250  alternate DEC LJ250 driver
  3895. # +    deskjet  H-P DeskJet and DeskJet Plus
  3896. #    djet500  H-P DeskJet 500
  3897. # *    djet500c  H-P DeskJet 500C alternate driver
  3898. #        (does not work on 550C or 560C)
  3899. # *    dnj650c  H-P DesignJet 650C
  3900. #    epson    Epson-compatible dot matrix printers (9- or 24-pin)
  3901. # *    eps9mid  Epson-compatible 9-pin, interleaved lines
  3902. #        (intermediate resolution)
  3903. # *    eps9high  Epson-compatible 9-pin, interleaved lines
  3904. #        (triple resolution)
  3905. # *    epsonc    Epson LQ-2550 and Fujitsu 3400/2400/1200 color printers
  3906. # *    ibmpro  IBM 9-pin Proprinter
  3907. # *    imagen    Imagen ImPress printers
  3908. # *    iwhi    Apple Imagewriter in high-resolution mode
  3909. # *    iwlo    Apple Imagewriter in low-resolution mode
  3910. # *    iwlq    Apple Imagewriter LQ in 320 x 216 dpi mode
  3911. # *    jetp3852  IBM Jetprinter ink-jet color printer (Model #3852)
  3912. # +    laserjet  H-P LaserJet
  3913. # *    la50    DEC LA50 printer
  3914. # *    la70    DEC LA70 printer
  3915. # *    la70t    DEC LA70 printer with low-resolution text enhancement
  3916. # *    la75    DEC LA75 printer
  3917. # *    la75plus DEC LA75plus printer
  3918. # *    lbp8    Canon LBP-8II laser printer
  3919. # *    lips3    Canon LIPS III laser printer in English (CaPSL) mode
  3920. # *    ln03    DEC LN03 printer
  3921. # *    lj250    DEC LJ250 Companion color printer
  3922. # +    ljet2p    H-P LaserJet IId/IIp/III* with TIFF compression
  3923. # +    ljet3    H-P LaserJet III* with Delta Row compression
  3924. # +    ljet3d    H-P LaserJet IIID with duplex capability
  3925. # +    ljet4    H-P LaserJet 4 (defaults to 600 dpi)
  3926. # +    lj4dith  H-P LaserJet 4 with Floyd-Steinberg dithering
  3927. # +    ljetplus  H-P LaserJet Plus
  3928. #    lj5mono  H-P LaserJet 5 & 6 family (PCL XL), bitmap:
  3929. #        see below for restrictions & advice
  3930. #    lj5gray  H-P LaserJet 5 & 6 family, gray-scale bitmap;
  3931. #        see below for restrictions & advice
  3932. # *    lp2563    H-P 2563B line printer
  3933. # *    lp8000    Epson LP-8000 laser printer
  3934. # *    m8510    C.Itoh M8510 printer
  3935. # *    necp6    NEC P6/P6+/P60 printers at 360 x 360 DPI resolution
  3936. # *    nwp533  Sony Microsystems NWP533 laser printer   [Sony only]
  3937. # *    oce9050  OCE 9050 printer
  3938. # *    oki182    Okidata MicroLine 182
  3939. # *    okiibm    Okidata MicroLine IBM-compatible printers
  3940. # *    paintjet  alternate H-P PaintJet color printer
  3941. # *    pj    H-P PaintJet XL driver 
  3942. # *    pjetxl    alternate H-P PaintJet XL driver
  3943. # *    pjxl    H-P PaintJet XL color printer
  3944. # *    pjxl300  H-P PaintJet XL300 color printer;
  3945. #        also good for PaintJet 1200C
  3946. #    (pxlmono) H-P black-and-white PCL XL printers (LaserJet 5 and 6 family)
  3947. #    (pxlcolor) H-P color PCL XL printers (none available yet)
  3948. # *    r4081    Ricoh 4081 laser printer
  3949. # *    sj48    StarJet 48 inkjet printer
  3950. # *    sparc    SPARCprinter
  3951. # *    st800    Epson Stylus 800 printer
  3952. # *    stcolor    Epson Stylus Color
  3953. # *    t4693d2  Tektronix 4693d color printer, 2 bits per R/G/B component
  3954. # *    t4693d4  Tektronix 4693d color printer, 4 bits per R/G/B component
  3955. # *    t4693d8  Tektronix 4693d color printer, 8 bits per R/G/B component
  3956. # *    tek4696  Tektronix 4695/4696 inkjet plotter
  3957. # *    uniprint  Unified printer driver -- Configurable Color ESC/P-,
  3958. #        ESC/P2-, HP-RTL/PCL mono/color driver
  3959. # *    xes    Xerox XES printers (2700, 3700, 4045, etc.)
  3960. # Fax systems:
  3961. # *    dfaxhigh  DigiBoard, Inc.'s DigiFAX software format (high resolution)
  3962. # *    dfaxlow  DigiFAX low (normal) resolution
  3963. # Fax file format:
  3964. #   ****** NOTE: all of these drivers adjust the page size to match
  3965. #   ****** one of the three CCITT standard sizes (U.S. letter with A4 width,
  3966. #   ****** A4, or B4).
  3967. #    faxg3    Group 3 fax, with EOLs but no header or EOD
  3968. #    faxg32d  Group 3 2-D fax, with EOLs but no header or EOD
  3969. #    faxg4    Group 4 fax, with EOLs but no header or EOD
  3970. #    tiffcrle  TIFF "CCITT RLE 1-dim" (= Group 3 fax with no EOLs)
  3971. #    tiffg3    TIFF Group 3 fax (with EOLs)
  3972. #    tiffg32d  TIFF Group 3 2-D fax
  3973. #    tiffg4    TIFF Group 4 fax
  3974. # High-level file formats:
  3975. #    epswrite  EPS output (like PostScript Distillery)
  3976. #    pdfwrite  PDF output (like Adobe Acrobat Distiller)
  3977. #    pswrite  PostScript output (like PostScript Distillery)
  3978. #    pxlmono  Black-and-white PCL XL
  3979. #    pxlcolor  Color PCL XL
  3980. # Other raster file formats and devices:
  3981. #    bit    Plain bits, monochrome
  3982. #    bitrgb    Plain bits, RGB
  3983. #    bitcmyk  Plain bits, CMYK
  3984. #    bmpmono    Monochrome MS Windows .BMP file format
  3985. #    bmp16    4-bit (EGA/VGA) .BMP file format
  3986. #    bmp256    8-bit (256-color) .BMP file format
  3987. #    bmp16m    24-bit .BMP file format
  3988. #    cgmmono  Monochrome (black-and-white) CGM -- LOW LEVEL OUTPUT ONLY
  3989. #    cgm8    8-bit (256-color) CGM -- DITTO
  3990. #    cgm24    24-bit color CGM -- DITTO
  3991. # *    cif    CIF file format for VLSI
  3992. #    jpeg    JPEG format, RGB output
  3993. #    jpeggray  JPEG format, gray output
  3994. #    miff24    ImageMagick MIFF format, 24-bit direct color, RLE compressed
  3995. # *    mgrmono  1-bit monochrome MGR devices
  3996. # *    mgrgray2  2-bit gray scale MGR devices
  3997. # *    mgrgray4  4-bit gray scale MGR devices
  3998. # *    mgrgray8  8-bit gray scale MGR devices
  3999. # *    mgr4    4-bit (VGA) color MGR devices
  4000. # *    mgr8    8-bit color MGR devices
  4001. #    pcxmono    PCX file format, monochrome (1-bit black and white)
  4002. #    pcxgray    PCX file format, 8-bit gray scale
  4003. #    pcx16    PCX file format, 4-bit planar (EGA/VGA) color
  4004. #    pcx256    PCX file format, 8-bit chunky color
  4005. #    pcx24b    PCX file format, 24-bit color (3 8-bit planes)
  4006. #    pcxcmyk PCX file format, 4-bit chunky CMYK color
  4007. #    pbm    Portable Bitmap (plain format)
  4008. #    pbmraw    Portable Bitmap (raw format)
  4009. #    pgm    Portable Graymap (plain format)
  4010. #    pgmraw    Portable Graymap (raw format)
  4011. #    pgnm    Portable Graymap (plain format), optimizing to PBM if possible
  4012. #    pgnmraw    Portable Graymap (raw format), optimizing to PBM if possible
  4013. #    pnm    Portable Pixmap (plain format) (RGB), optimizing to PGM or PBM
  4014. #         if possible
  4015. #    pnmraw    Portable Pixmap (raw format) (RGB), optimizing to PGM or PBM
  4016. #         if possible
  4017. #    ppm    Portable Pixmap (plain format) (RGB)
  4018. #    ppmraw    Portable Pixmap (raw format) (RGB)
  4019. #    pkm    Portable inKmap (plain format) (4-bit CMYK => RGB)
  4020. #    pkmraw    Portable inKmap (raw format) (4-bit CMYK => RGB)
  4021. #    pngmono    Monochrome Portable Network Graphics (PNG)
  4022. #    pnggray    8-bit gray Portable Network Graphics (PNG)
  4023. #    png16    4-bit color Portable Network Graphics (PNG)
  4024. #    png256    8-bit color Portable Network Graphics (PNG)
  4025. #    png16m    24-bit color Portable Network Graphics (PNG)
  4026. #    psmono    PostScript (Level 1) monochrome image
  4027. #    psgray    PostScript (Level 1) 8-bit gray image
  4028. #    sgirgb    SGI RGB pixmap format
  4029. #    tiff12nc  TIFF 12-bit RGB, no compression
  4030. #    tiff24nc  TIFF 24-bit RGB, no compression (NeXT standard format)
  4031. #    tifflzw  TIFF LZW (tag = 5) (monochrome)
  4032. #    tiffpack  TIFF PackBits (tag = 32773) (monochrome)
  4033.  
  4034. # User-contributed drivers marked with * require hardware or software
  4035. # that is not available to Aladdin Enterprises.  Please contact the
  4036. # original contributors, not Aladdin Enterprises, if you have questions.
  4037. # Contact information appears in the driver entry below.
  4038. #
  4039. # Drivers marked with a + are maintained by Aladdin Enterprises with
  4040. # the assistance of users, since Aladdin Enterprises doesn't have access to
  4041. # the hardware for these either.
  4042.  
  4043. # If you add drivers, it would be nice if you kept each list
  4044. # in alphabetical order.
  4045.  
  4046. ###### ----------------------- End of catalog ----------------------- ######
  4047.  
  4048. # As noted in gs.mak, DEVICE_DEVS and DEVICE_DEVS1..15 select the devices
  4049. # that should be included in a given configuration.  By convention, these
  4050. # are used as follows.  Each of these must be limited to about 10 devices
  4051. # so as not to overflow the 120 character limit on MS-DOS command lines.
  4052. #    DEVICE_DEVS - the default device, and any display devices.
  4053. #    DEVICE_DEVS1 - additional display devices if needed.
  4054. #    DEVICE_DEVS2 - dot matrix printers.
  4055. #    DEVICE_DEVS3 - H-P monochrome printers.
  4056. #    DEVICE_DEVS4 - H-P color printers.
  4057. #    DEVICE_DEVS5 - additional H-P printers if needed.
  4058. #    DEVICE_DEVS6 - other ink-jet and laser printers.
  4059. #    DEVICE_DEVS7 - fax file formats.
  4060. #    DEVICE_DEVS8 - PCX file formats.
  4061. #    DEVICE_DEVS9 - PBM/PGM/PPM file formats.
  4062. #    DEVICE_DEVS10 - black-and-white TIFF file formats.
  4063. #    DEVICE_DEVS11 - BMP and color TIFF file formats.
  4064. #    DEVICE_DEVS12 - PostScript image and 'bit' file formats.
  4065. #    DEVICE_DEVS13 - PNG file formats.
  4066. #    DEVICE_DEVS14 - CGM, JPEG, and MIFF file formats.
  4067. #    DEVICE_DEVS15 - high-level (PostScript and PDF) file formats.
  4068. # Feel free to disregard this convention if it gets in your way.
  4069.  
  4070. # If you want to add a new device driver, the examples below should be
  4071. # enough of a guide to the correct form for the makefile rules.
  4072. # Note that all drivers other than displays must include page.dev in their
  4073. # dependencies and use $(SETPDEV) rather than $(SETDEV) in their rule bodies.
  4074.  
  4075. # All device drivers depend on the following:
  4076. GDEV=$(AK) $(ECHOGS_XE) $(gserrors_h) $(gx_h) $(gxdevice_h)
  4077.  
  4078. # "Printer" drivers depend on the following:
  4079. PDEVH=$(AK) $(gdevprn_h)
  4080.  
  4081. # Define the header files for device drivers.  Every header file used by
  4082. # more than one device driver family must be listed here.
  4083. gdev8bcm_h=gdev8bcm.h
  4084. gdevpccm_h=gdevpccm.h
  4085. gdevpcfb_h=gdevpcfb.h $(dos__h)
  4086. gdevpcl_h=gdevpcl.h
  4087. gdevsvga_h=gdevsvga.h
  4088. gdevx_h=gdevx.h
  4089.  
  4090. ###### ----------------------- Device support ----------------------- ######
  4091.  
  4092. # Provide a mapping between StandardEncoding and ISOLatin1Encoding.
  4093. gdevemap.$(OBJ): gdevemap.c $(AK) $(std_h)
  4094.  
  4095. # Implement dynamic color management for 8-bit mapped color displays.
  4096. gdev8bcm.$(OBJ): gdev8bcm.c $(AK) \
  4097.   $(gx_h) $(gxdevice_h) $(gdev8bcm_h)
  4098.  
  4099. ###### ------------------- MS-DOS display devices ------------------- ######
  4100.  
  4101. # There are really only three drivers: an EGA/VGA driver (4 bit-planes,
  4102. # plane-addressed), a SuperVGA driver (8 bit-planes, byte addressed),
  4103. # and a special driver for the S3 chip.
  4104.  
  4105. # PC display color mapping
  4106. gdevpccm.$(OBJ): gdevpccm.c $(AK) \
  4107.   $(gx_h) $(gsmatrix_h) $(gxdevice_h) $(gdevpccm_h)
  4108.  
  4109. ### ----------------------- EGA and VGA displays ----------------------- ###
  4110.  
  4111. # The shared MS-DOS makefile defines PCFBASM as either gdevegaa.$(OBJ)
  4112. # or an empty string.
  4113.  
  4114. gdevegaa.$(OBJ): gdevegaa.asm
  4115.  
  4116. # NOTE: for direct frame buffer addressing under SCO Unix or Xenix,
  4117. # change gdevevga to gdevsco in the following line.  Also, since
  4118. # SCO's /bin/as does not support the "out" instructions, you must build
  4119. # the gnu assembler and have it on your path as "as".
  4120. EGAVGA=gdevevga.$(OBJ) gdevpcfb.$(OBJ) gdevpccm.$(OBJ) $(PCFBASM)
  4121. #EGAVGA=gdevsco.$(OBJ) gdevpcfb.$(OBJ) gdevpccm.$(OBJ) $(PCFBASM)
  4122.  
  4123. gdevevga.$(OBJ): gdevevga.c $(GDEV) $(memory__h) $(gdevpcfb_h)
  4124.     $(CCD) gdevevga.c
  4125.  
  4126. gdevsco.$(OBJ): gdevsco.c $(GDEV) $(memory__h) $(gdevpcfb_h)
  4127.  
  4128. # Common code for MS-DOS and SCO.
  4129. gdevpcfb.$(OBJ): gdevpcfb.c $(GDEV) $(memory__h) $(gconfigv_h)\
  4130.  $(gdevpccm_h) $(gdevpcfb_h) $(gsparam_h)
  4131.     $(CCD) gdevpcfb.c
  4132.  
  4133. # The EGA/VGA family includes EGA and VGA.  Many SuperVGAs in 800x600,
  4134. # 16-color mode can share the same code; see the next section below.
  4135.  
  4136. ega.dev: $(EGAVGA)
  4137.     $(SETDEV) ega $(EGAVGA)
  4138.  
  4139. vga.dev: $(EGAVGA)
  4140.     $(SETDEV) vga $(EGAVGA)
  4141.  
  4142. ### ------------------------- SuperVGA displays ------------------------ ###
  4143.  
  4144. # SuperVGA displays in 16-color, 800x600 mode are really just slightly
  4145. # glorified VGA's, so we can handle them all with a single driver.
  4146. # The way to select them on the command line is with
  4147. #    -sDEVICE=svga16 -dDisplayMode=NNN
  4148. # where NNN is the display mode in decimal.  See use.txt for the modes
  4149. # for some popular display chipsets.
  4150.  
  4151. svga16.dev: $(EGAVGA)
  4152.     $(SETDEV) svga16 $(EGAVGA)
  4153.  
  4154. # More capable SuperVGAs have a wide variety of slightly differing
  4155. # interfaces, so we need a separate driver for each one.
  4156.  
  4157. SVGA=gdevsvga.$(OBJ) gdevpccm.$(OBJ) $(PCFBASM)
  4158.  
  4159. gdevsvga.$(OBJ): gdevsvga.c $(GDEV) $(memory__h) $(gconfigv_h)\
  4160.  $(gsparam_h) $(gxarith_h) $(gdevpccm_h) $(gdevpcfb_h) $(gdevsvga_h)
  4161.     $(CCD) gdevsvga.c
  4162.  
  4163. # The SuperVGA family includes: Avance Logic Inc., ATI Wonder, S3,
  4164. # Trident, Tseng ET3000/4000, and VESA.
  4165.  
  4166. ali.dev: $(SVGA)
  4167.     $(SETDEV) ali $(SVGA)
  4168.  
  4169. atiw.dev: $(SVGA)
  4170.     $(SETDEV) atiw $(SVGA)
  4171.  
  4172. tseng.dev: $(SVGA)
  4173.     $(SETDEV) tseng $(SVGA)
  4174.  
  4175. tvga.dev: $(SVGA)
  4176.     $(SETDEV) tvga $(SVGA)
  4177.  
  4178. vesa.dev: $(SVGA)
  4179.     $(SETDEV) vesa $(SVGA)
  4180.  
  4181. # The S3 driver doesn't share much code with the others.
  4182.  
  4183. s3vga_=gdevs3ga.$(OBJ) gdevsvga.$(OBJ) gdevpccm.$(OBJ)
  4184. s3vga.dev: $(SVGA) $(s3vga_)
  4185.     $(SETDEV) s3vga $(SVGA)
  4186.     $(ADDMOD) s3vga -obj $(s3vga_)
  4187.  
  4188. gdevs3ga.$(OBJ): gdevs3ga.c $(GDEV) $(gdevpcfb_h) $(gdevsvga_h)
  4189.     $(CCD) gdevs3ga.c
  4190.  
  4191. ### ------------ The BGI (Borland Graphics Interface) device ----------- ###
  4192.  
  4193. cgaf.$(OBJ): $(BGIDIR)\cga.bgi
  4194.     $(BGIDIR)\bgiobj /F $(BGIDIR)\cga
  4195.  
  4196. egavgaf.$(OBJ): $(BGIDIR)\egavga.bgi
  4197.     $(BGIDIR)\bgiobj /F $(BGIDIR)\egavga
  4198.  
  4199. # Include egavgaf.$(OBJ) for debugging only.
  4200. bgi_=gdevbgi.$(OBJ) cgaf.$(OBJ)
  4201. bgi.dev: $(bgi_)
  4202.     $(SETDEV) bgi $(bgi_)
  4203.     $(ADDMOD) bgi -lib $(LIBDIR)\graphics
  4204.  
  4205. gdevbgi.$(OBJ): gdevbgi.c $(GDEV) $(MAKEFILE) $(gxxfont_h)
  4206.     $(CCC) -DBGI_LIB="$(BGIDIRSTR)" gdevbgi.c
  4207.  
  4208. ### ------------------- The Hercules Graphics display ------------------- ###
  4209.  
  4210. herc_=gdevherc.$(OBJ)
  4211. herc.dev: $(herc_)
  4212.     $(SETDEV) herc $(herc_)
  4213.  
  4214. gdevherc.$(OBJ): gdevherc.c $(GDEV) $(dos__h) $(gsmatrix_h) $(gxbitmap_h)
  4215.     $(CCC) gdevherc.c
  4216.  
  4217. ### ---------------------- The Private Eye display ---------------------- ###
  4218. ### Note: this driver was contributed by a user:                          ###
  4219. ###   please contact narf@media-lab.media.mit.edu if you have questions.  ###
  4220.  
  4221. pe_=gdevpe.$(OBJ)
  4222. pe.dev: $(pe_)
  4223.     $(SETDEV) pe $(pe_)
  4224.  
  4225. gdevpe.$(OBJ): gdevpe.c $(GDEV) $(memory__h)
  4226.  
  4227. ###### ----------------------- Other displays ------------------------ ######
  4228. ### ---------------- Amiga display/printer/file devices ---------------- ###
  4229. ### Note: this driver was contributed by a user: please contact          ###
  4230. ###       Olaf Barthel (olsen@sourcery.han.de) if you have questions.    ###
  4231. ###       He would also like to hear from anyone using the driver.       ###
  4232. ### Please consult the source code for additional documentation.         ###
  4233.  
  4234. amiga_=gdevamiga.$(OBJ)
  4235.  
  4236. amiga.dev: $(amiga_)
  4237.     $(SETDEV) amiga $(amiga_)
  4238.  
  4239. amiga_low.dev: $(amiga_)
  4240.     $(SETDEV) amiga_low $(amiga_)
  4241.  
  4242. amiga_high.dev: $(amiga_)
  4243.     $(SETDEV) amiga_high $(amiga_)
  4244.  
  4245. amiga_super.dev: $(amiga_)
  4246.     $(SETDEV) amiga_super $(amiga_)
  4247.  
  4248. amiga_a2024.dev: $(amiga_)
  4249.     $(SETDEV) amiga_a2024 $(amiga_)
  4250.  
  4251. amiga_picassoii.dev: $(amiga_)
  4252.     $(SETDEV) amiga_picassoii $(amiga_)
  4253.  
  4254. amiga_custom.dev: $(amiga_)
  4255.     $(SETDEV) amiga_custom $(amiga_)
  4256.  
  4257. amiga_printer.dev: $(amiga_)
  4258.     $(SETDEV) amiga_printer $(amiga_)
  4259.  
  4260. amiga_ilbm.dev: $(amiga_)
  4261.     $(SETDEV) amiga_ilbm $(amiga_)
  4262.  
  4263. gdevamiga.$(OBJ): $(srcdir)/gdevamiga.c
  4264.  
  4265.  
  4266. ### -------------------- The MS-Windows 3.n DLL ------------------------- ###
  4267.  
  4268. gsdll_h=gsdll.h
  4269.  
  4270. gdevmswn_h=gdevmswn.h $(GDEV)\
  4271.  $(dos__h) $(memory__h) $(string__h) $(windows__h)\
  4272.  gp_mswin.h
  4273.  
  4274. gdevmswn.$(OBJ): gdevmswn.c $(gdevmswn_h) $(gp_h) $(gpcheck_h) \
  4275.  $(gsdll_h) $(gsparam_h) $(gdevpccm_h)
  4276.  
  4277. gdevmsxf.$(OBJ): gdevmsxf.c $(ctype__h) $(math__h) $(memory__h) $(string__h)\
  4278.  $(gdevmswn_h) $(gsstruct_h) $(gsutil_h) $(gxxfont_h)
  4279.  
  4280. # An implementation using a DIB filled by an image device.
  4281. gdevwdib.$(OBJ): gdevwdib.c $(gdevmswn_h) $(gsdll_h) $(gxdevmem_h)
  4282.  
  4283. mswindll_=gdevmswn.$(OBJ) gdevmsxf.$(OBJ) gdevwdib.$(OBJ) \
  4284.   gdevemap.$(OBJ) gdevpccm.$(OBJ)
  4285. mswindll.dev: $(mswindll_)
  4286.     $(SETDEV) mswindll $(mswindll_)
  4287.  
  4288. ### -------------------- The MS-Windows DDB 3.n printer ----------------- ###
  4289.  
  4290. mswinprn_=gdevwprn.$(OBJ) gdevmsxf.$(OBJ)
  4291. mswinprn.dev: $(mswinprn_)
  4292.     $(SETDEV) mswinprn $(mswinprn_)
  4293.  
  4294. gdevwprn.$(OBJ): gdevwprn.c $(gdevmswn_h) $(gp_h)
  4295.  
  4296. ### -------------------- The MS-Windows DIB 3.n printer ----------------- ###
  4297.  
  4298. mswinpr2_=gdevwpr2.$(OBJ)
  4299. mswinpr2.dev: $(mswinpr2_) page.dev
  4300.     $(SETPDEV) mswinpr2 $(mswinpr2_)
  4301.  
  4302. gdevwpr2.$(OBJ): gdevwpr2.c $(PDEVH) $(windows__h)\
  4303.  $(gdevpccm_h) $(gp_h) gp_mswin.h
  4304.  
  4305. ### ------------------ OS/2 Presentation Manager device ----------------- ###
  4306.  
  4307. os2pm_=gdevpm.$(OBJ) gdevpccm.$(OBJ)
  4308. os2pm.dev: $(os2pm_)
  4309.     $(SETDEV) os2pm $(os2pm_)
  4310.  
  4311. os2dll_=gdevpm.$(OBJ) gdevpccm.$(OBJ)
  4312. os2dll.dev: $(os2dll_)
  4313.     $(SETDEV) os2dll $(os2dll_)
  4314.  
  4315. gdevpm.$(OBJ): gdevpm.c $(string__h)\
  4316.  $(gp_h) $(gpcheck_h)\
  4317.  $(gsdll_h) $(gserrors_h) $(gsexit_h) $(gsparam_h)\
  4318.  $(gx_h) $(gxdevice_h) $(gxdevmem_h)\
  4319.  $(gdevpccm_h) gdevpm.h
  4320.  
  4321. ### --------------------------- The OS/2 printer ------------------------ ###
  4322.  
  4323. os2prn_=gdevos2p.$(OBJ)
  4324. os2prn.dev: $(os2prn_) page.dev
  4325.     $(SETPDEV) os2prn $(os2prn_)
  4326.  
  4327. os2prn.$(OBJ): os2prn.c $(gp_h)
  4328.  
  4329. ### -------------- The AT&T 3b1 Unixpc monochrome display --------------- ###
  4330. ### Note: this driver was contributed by a user: please contact           ###
  4331. ###       Andy Fyfe (andy@cs.caltech.edu) if you have questions.          ###
  4332.  
  4333. att3b1_=gdev3b1.$(OBJ)
  4334. att3b1.dev: $(att3b1_)
  4335.     $(SETDEV) att3b1 $(att3b1_)
  4336.  
  4337. gdev3b1.$(OBJ): gdev3b1.c $(GDEV)
  4338.  
  4339. ### ---------------------- Linux PC with vgalib ------------------------- ###
  4340. ### Note: these drivers were contributed by users.                        ###
  4341. ### For questions about the lvga256 driver, please contact                ###
  4342. ###       Ludger Kunz (ludger.kunz@fernuni-hagen.de).                     ###
  4343. ### For questions about the vgalib driver, please contact                 ###
  4344. ###       Erik Talvola (talvola@gnu.ai.mit.edu).                          ###
  4345.  
  4346. lvga256_=gdevl256.$(OBJ)
  4347. lvga256.dev: $(lvga256_)
  4348.     $(SETDEV) lvga256 $(lvga256_)
  4349.     $(ADDMOD) lvga256 -lib vga vgagl
  4350.  
  4351. gdevl256.$(OBJ): gdevl256.c $(GDEV)
  4352.  
  4353. vgalib_=gdevvglb.$(OBJ) gdevpccm.$(OBJ)
  4354. vgalib.dev: $(vgalib_)
  4355.     $(SETDEV) vgalib $(vgalib_)
  4356.     $(ADDMOD) vgalib -lib vga
  4357.  
  4358. gdevvglb.$(OBJ): gdevvglb.c $(GDEV) $(gdevpccm_h) $(gsparam_h)
  4359.  
  4360. ### ------------------- Sony NeWS frame buffer device ------------------ ###
  4361. ### Note: this driver was contributed by a user: please contact          ###
  4362. ###       Mike Smolenski (mike@intertech.com) if you have questions.     ###
  4363.  
  4364. # This is implemented as a 'printer' device.
  4365. sonyfb_=gdevsnfb.$(OBJ)
  4366. sonyfb.dev: $(sonyfb_) page.dev
  4367.     $(SETPDEV) sonyfb $(sonyfb_)
  4368.  
  4369. gdevsnfb.$(OBJ): gdevsnfb.c $(PDEVH)
  4370.  
  4371. ### ------------------------ The SunView device ------------------------ ###
  4372. ### Note: this driver is maintained by a user: if you have questions,    ###
  4373. ###       please contact Andreas Stolcke (stolcke@icsi.berkeley.edu).    ###
  4374.  
  4375. sunview_=gdevsun.$(OBJ)
  4376. sunview.dev: $(sunview_)
  4377.     $(SETDEV) sunview $(sunview_)
  4378.     $(ADDMOD) sunview -lib suntool sunwindow pixrect
  4379.  
  4380. gdevsun.$(OBJ): gdevsun.c $(GDEV) $(malloc__h)\
  4381.  $(gscdefs_h) $(gserrors_h) $(gsmatrix_h)
  4382.  
  4383. ### -------------------------- The X11 device -------------------------- ###
  4384.  
  4385. # Aladdin Enterprises does not support Ghostview.  For more information
  4386. # about Ghostview, please contact Tim Theisen (ghostview@cs.wisc.edu).
  4387.  
  4388. # See the main makefile for the definition of XLIBS.
  4389. x11_=gdevx.$(OBJ) gdevxini.$(OBJ) gdevxxf.$(OBJ) gdevemap.$(OBJ)
  4390. x11.dev: $(x11_)
  4391.     $(SETDEV) x11 $(x11_)
  4392.     $(ADDMOD) x11 -lib $(XLIBS)
  4393.  
  4394. # See the main makefile for the definition of XINCLUDE.
  4395. GDEVX=$(GDEV) x_.h gdevx.h $(MAKEFILE)
  4396. gdevx.$(OBJ): gdevx.c $(GDEVX) $(math__h) $(memory__h) $(gsparam_h)
  4397.     $(CCC) $(XINCLUDE) -I. $(srcdir)/gdevx.c
  4398.  
  4399. gdevxini.$(OBJ): gdevxini.c $(GDEVX) $(math__h) $(memory__h) $(gserrors_h)
  4400.     $(CCC) $(XINCLUDE) -I. $(srcdir)/gdevxini.c
  4401.  
  4402. gdevxxf.$(OBJ): gdevxxf.c $(GDEVX) $(math__h) $(memory__h)\
  4403.  $(gsstruct_h) $(gsutil_h) $(gxxfont_h)
  4404.     $(CCC) $(XINCLUDE) -I. $(srcdir)/gdevxxf.c
  4405.  
  4406. # Alternate X11-based devices to help debug other drivers.
  4407. # x11alpha pretends to have 4 bits of alpha channel.
  4408. # x11cmyk pretends to be a CMYK device with 1 bit each of C,M,Y,K.
  4409. # x11gray2 pretends to be a 2-bit gray-scale device.
  4410. # x11mono pretends to be a black-and-white device.
  4411. x11alt_=$(x11_) gdevxalt.$(OBJ)
  4412. x11alpha.dev: $(x11alt_)
  4413.     $(SETDEV) x11alpha $(x11alt_)
  4414.     $(ADDMOD) x11alpha -lib $(XLIBS)
  4415.  
  4416. x11cmyk.dev: $(x11alt_)
  4417.     $(SETDEV) x11cmyk $(x11alt_)
  4418.     $(ADDMOD) x11cmyk -lib $(XLIBS)
  4419.  
  4420. x11gray2.dev: $(x11alt_)
  4421.     $(SETDEV) x11gray2 $(x11alt_)
  4422.     $(ADDMOD) x11gray2 -lib $(XLIBS)
  4423.  
  4424. x11mono.dev: $(x11alt_)
  4425.     $(SETDEV) x11mono $(x11alt_)
  4426.     $(ADDMOD) x11mono -lib $(XLIBS)
  4427.  
  4428. gdevxalt.$(OBJ): gdevxalt.c $(GDEVX) $(math__h) $(memory__h) $(gsparam_h)
  4429.     $(CCC) $(XINCLUDE) -I. $(srcdir)/gdevxalt.c
  4430.  
  4431. ### ------------------------- DEC sixel displays ------------------------ ###
  4432. ### Note: this driver was contributed by a user: please contact           ###
  4433. ###   Phil Keegstra (keegstra@tonga.gsfc.nasa.gov) if you have questions. ###
  4434.  
  4435. # This is a "printer" device, but it probably shouldn't be.
  4436. # I don't know why the implementor chose to do it this way.
  4437. sxlcrt_=gdevln03.$(OBJ)
  4438. sxlcrt.dev: $(sxlcrt_) page.dev
  4439.     $(SETPDEV) sxlcrt $(sxlcrt_)
  4440.  
  4441. ###### --------------- Memory-buffered printer devices --------------- ######
  4442.  
  4443. ### --------------------- The Apple printer devices --------------------- ###
  4444. ### Note: these drivers were contributed by users.                        ###
  4445. ###   If you have questions about the DMP driver, please contact          ###
  4446. ###    Mark Wedel (master@cats.ucsc.edu).                                ###
  4447. ###   If you have questions about the Imagewriter drivers, please contact ###
  4448. ###    Jonathan Luckey (luckey@rtfm.mlb.fl.us).                          ###
  4449. ###   If you have questions about the Imagewriter LQ driver, please       ###
  4450. ###    contact Scott Barker (barkers@cuug.ab.ca).                        ###
  4451.  
  4452. appledmp_=gdevadmp.$(OBJ)
  4453.  
  4454. gdevadmp.$(OBJ): gdevadmp.c $(PDEVH)
  4455.  
  4456. appledmp.dev: $(appledmp_) page.dev
  4457.     $(SETPDEV) appledmp $(appledmp_)
  4458.  
  4459. iwhi.dev: $(appledmp_) page.dev
  4460.     $(SETPDEV) iwhi $(appledmp_)
  4461.  
  4462. iwlo.dev: $(appledmp_) page.dev
  4463.     $(SETPDEV) iwlo $(appledmp_)
  4464.  
  4465. iwlq.dev: $(appledmp_) page.dev
  4466.     $(SETPDEV) iwlq $(appledmp_)
  4467.  
  4468. ### ------------ The Canon BubbleJet BJ10e and BJ200 devices ------------ ###
  4469.  
  4470. bj10e_=gdevbj10.$(OBJ)
  4471.  
  4472. bj10e.dev: $(bj10e_) page.dev
  4473.     $(SETPDEV) bj10e $(bj10e_)
  4474.  
  4475. bj200.dev: $(bj10e_) page.dev
  4476.     $(SETPDEV) bj200 $(bj10e_)
  4477.  
  4478. gdevbj10.$(OBJ): gdevbj10.c $(PDEVH)
  4479.  
  4480. ### ------------- The CalComp Raster Format ----------------------------- ###
  4481. ### Note: this driver was contributed by a user: please contact           ###
  4482. ###       Ernst Muellner (ernst.muellner@oenzl.siemens.de) if you have    ###
  4483. ###       questions.                                                      ###
  4484.  
  4485. ccr_=gdevccr.$(OBJ)
  4486. ccr.dev: $(ccr_) page.dev
  4487.     $(SETPDEV) ccr $(ccr_)
  4488.  
  4489. gdevccr.$(OBJ): gdevccr.c $(PDEVH)
  4490.  
  4491. ### ----------- The H-P DeskJet and LaserJet printer devices ----------- ###
  4492.  
  4493. ### These are essentially the same device.
  4494. ### NOTE: printing at full resolution (300 DPI) requires a printer
  4495. ###   with at least 1.5 Mb of memory.  150 DPI only requires .5 Mb.
  4496. ### Note that the lj4dith driver is included with the H-P color printer
  4497. ###   drivers below.
  4498.  
  4499. HPPCL=gdevpcl.$(OBJ)
  4500. HPMONO=gdevdjet.$(OBJ) $(HPPCL)
  4501.  
  4502. gdevpcl.$(OBJ): gdevpcl.c $(PDEVH) $(gdevpcl_h)
  4503.  
  4504. gdevdjet.$(OBJ): gdevdjet.c $(PDEVH) $(gdevpcl_h)
  4505.  
  4506. deskjet.dev: $(HPMONO) page.dev
  4507.     $(SETPDEV) deskjet $(HPMONO)
  4508.  
  4509. djet500.dev: $(HPMONO) page.dev
  4510.     $(SETPDEV) djet500 $(HPMONO)
  4511.  
  4512. laserjet.dev: $(HPMONO) page.dev
  4513.     $(SETPDEV) laserjet $(HPMONO)
  4514.  
  4515. ljetplus.dev: $(HPMONO) page.dev
  4516.     $(SETPDEV) ljetplus $(HPMONO)
  4517.  
  4518. ### Selecting ljet2p provides TIFF (mode 2) compression on LaserJet III,
  4519. ### IIIp, IIId, IIIsi, IId, and IIp. 
  4520.  
  4521. ljet2p.dev: $(HPMONO) page.dev
  4522.     $(SETPDEV) ljet2p $(HPMONO)
  4523.  
  4524. ### Selecting ljet3 provides Delta Row (mode 3) compression on LaserJet III,
  4525. ### IIIp, IIId, IIIsi.
  4526.  
  4527. ljet3.dev: $(HPMONO) page.dev
  4528.     $(SETPDEV) ljet3 $(HPMONO)
  4529.  
  4530. ### Selecting ljet3d also provides duplex printing capability.
  4531.  
  4532. ljet3d.dev: $(HPMONO) page.dev
  4533.     $(SETPDEV) ljet3d $(HPMONO)
  4534.  
  4535. ### Selecting ljet4 also provides Delta Row compression on LaserJet IV series.
  4536.  
  4537. ljet4.dev: $(HPMONO) page.dev
  4538.     $(SETPDEV) ljet4 $(HPMONO)
  4539.  
  4540. lp2563.dev: $(HPMONO) page.dev
  4541.     $(SETPDEV) lp2563 $(HPMONO)
  4542.  
  4543. oce9050.dev: $(HPMONO) page.dev
  4544.     $(SETPDEV) oce9050 $(HPMONO)
  4545.  
  4546. ### ------------------ The H-P LaserJet 5 and 6 devices ----------------- ###
  4547.  
  4548. ### These drivers use H-P's new PCL XL printer language, like H-P's
  4549. ### LaserJet 5 Enhanced driver for MS Windows.  We don't recommend using
  4550. ### them:
  4551. ###    - If you have a LJ5L, which isn't a "real" LaserJet 5, use the
  4552. ###    ljet4 driver instead.  (The lj5 drivers won't work.)
  4553. ###    - If you have any other model of LJ 5 or 6, use the pxlmono
  4554. ###    driver, which often produces much more compact output.
  4555.  
  4556. gdevpxat_h=gdevpxat.h
  4557. gdevpxen_h=gdevpxen.h
  4558. gdevpxop_h=gdevpxop.h
  4559.  
  4560. ljet5_=gdevlj56.$(OBJ) $(HPPCL)
  4561. lj5mono.dev: $(ljet5_) page.dev
  4562.     $(SETPDEV) lj5mono $(ljet5_)
  4563.  
  4564. lj5gray.dev: $(ljet5_) page.dev
  4565.     $(SETPDEV) lj5gray $(ljet5_)
  4566.  
  4567. gdevlj56.$(OBJ): gdevlj56.c $(PDEVH) $(gdevpcl_h)\
  4568.  $(gdevpxat_h) $(gdevpxen_h) $(gdevpxop_h)
  4569.  
  4570. ### The H-P DeskJet, PaintJet, and DesignJet family color printer devices.###
  4571. ### Note: there are two different 500C drivers, both contributed by users.###
  4572. ###   If you have questions about the djet500c driver,                    ###
  4573. ###       please contact AKayser@et.tudelft.nl.                           ###
  4574. ###   If you have questions about the cdj* drivers,                       ###
  4575. ###       please contact g.cameron@biomed.abdn.ac.uk.                     ###
  4576. ###   If you have questions about the dnj560c driver,                     ###
  4577. ###       please contact koert@zen.cais.com.                              ###
  4578. ###   If you have questions about the lj4dith driver,                     ###
  4579. ###       please contact Eckhard.Rueggeberg@ts.go.dlr.de.                 ###
  4580. ###   If you have questions about the BJC600/BJC4000, BJC800, or ESCP     ###
  4581. ###       drivers, please contact Yves.Arrouye@imag.fr.                   ###
  4582.  
  4583. cdeskjet_=gdevcdj.$(OBJ) $(HPPCL)
  4584.  
  4585. cdeskjet.dev: $(cdeskjet_) page.dev
  4586.     $(SETPDEV) cdeskjet $(cdeskjet_)
  4587.  
  4588. cdjcolor.dev: $(cdeskjet_) page.dev
  4589.     $(SETPDEV) cdjcolor $(cdeskjet_)
  4590.  
  4591. cdjmono.dev: $(cdeskjet_) page.dev
  4592.     $(SETPDEV) cdjmono $(cdeskjet_)
  4593.  
  4594. cdj500.dev: $(cdeskjet_) page.dev
  4595.     $(SETPDEV) cdj500 $(cdeskjet_)
  4596.  
  4597. cdj550.dev: $(cdeskjet_) page.dev
  4598.     $(SETPDEV) cdj550 $(cdeskjet_)
  4599.  
  4600. declj250.dev: $(cdeskjet_) page.dev
  4601.     $(SETPDEV) declj250 $(cdeskjet_)
  4602.  
  4603. dnj650c.dev: $(cdeskjet_) page.dev
  4604.     $(SETPDEV) dnj650c $(cdeskjet_)
  4605.  
  4606. lj4dith.dev: $(cdeskjet_) page.dev
  4607.     $(SETPDEV) lj4dith $(cdeskjet_)
  4608.  
  4609. pj.dev: $(cdeskjet_) page.dev
  4610.     $(SETPDEV) pj $(cdeskjet_)
  4611.  
  4612. pjxl.dev: $(cdeskjet_) page.dev
  4613.     $(SETPDEV) pjxl $(cdeskjet_)
  4614.  
  4615. pjxl300.dev: $(cdeskjet_) page.dev
  4616.     $(SETPDEV) pjxl300 $(cdeskjet_)
  4617.  
  4618. # Note: the BJC600 driver also works for the BJC4000.
  4619. bjc600.dev: $(cdeskjet_) page.dev
  4620.     $(SETPDEV) bjc600 $(cdeskjet_)
  4621.  
  4622. bjc800.dev: $(cdeskjet_) page.dev
  4623.     $(SETPDEV) bjc800 $(cdeskjet_)
  4624.  
  4625. escp.dev: $(cdeskjet_) page.dev
  4626.     $(SETPDEV) escp $(cdeskjet_)
  4627.  
  4628. # NB: you can also customise the build if required, using
  4629. # -DBitsPerPixel=<number> if you wish the default to be other than 24
  4630. # for the generic drivers (cdj500, cdj550, pjxl300, pjtest, pjxltest).
  4631. gdevcdj.$(OBJ): gdevcdj.c $(std_h) $(PDEVH) gdevbjc.h\
  4632.  $(gsparam_h) $(gsstate_h) $(gxlum_h)\
  4633.  $(gdevpcl_h)
  4634.  
  4635. djet500c_=gdevdjtc.$(OBJ) $(HPPCL)
  4636. djet500c.dev: $(djet500c_) page.dev
  4637.     $(SETPDEV) djet500c $(djet500c_)
  4638.  
  4639. gdevdjtc.$(OBJ): gdevdjtc.c $(PDEVH) $(malloc__h) $(gdevpcl_h)
  4640.  
  4641. ### -------------------- The Mitsubishi CP50 printer -------------------- ###
  4642. ### Note: this driver was contributed by a user: please contact           ###
  4643. ###       Michael Hu (michael@ximage.com) if you have questions.          ###
  4644.  
  4645. cp50_=gdevcp50.$(OBJ)
  4646. cp50.dev: $(cp50_) page.dev
  4647.     $(SETPDEV) cp50 $(cp50_)
  4648.  
  4649. gdevcp50.$(OBJ): gdevcp50.c $(PDEVH)
  4650.  
  4651. ### ----------------- The generic Epson printer device ----------------- ###
  4652. ### Note: most of this code was contributed by users.  Please contact    ###
  4653. ###       the following people if you have questions:                    ###
  4654. ###   eps9mid - Guenther Thomsen (thomsen@cs.tu-berlin.de)               ###
  4655. ###   eps9high - David Wexelblat (dwex@mtgzfs3.att.com)                  ###
  4656. ###   ibmpro - James W. Birdsall (jwbirdsa@picarefy.picarefy.com)        ###
  4657.  
  4658. epson_=gdevepsn.$(OBJ)
  4659.  
  4660. epson.dev: $(epson_) page.dev
  4661.     $(SETPDEV) epson $(epson_)
  4662.  
  4663. eps9mid.dev: $(epson_) page.dev
  4664.     $(SETPDEV) eps9mid $(epson_)
  4665.  
  4666. eps9high.dev: $(epson_) page.dev
  4667.     $(SETPDEV) eps9high $(epson_)
  4668.  
  4669. gdevepsn.$(OBJ): gdevepsn.c $(PDEVH)
  4670.  
  4671. ### ----------------- The IBM Proprinter printer device ---------------- ###
  4672.  
  4673. ibmpro.dev: $(epson_) page.dev
  4674.     $(SETPDEV) ibmpro $(epson_)
  4675.  
  4676. ### -------------- The Epson LQ-2550 color printer device -------------- ###
  4677. ### Note: this driver was contributed by users: please contact           ###
  4678. ###       Dave St. Clair (dave@exlog.com) if you have questions.         ###
  4679.  
  4680. epsonc_=gdevepsc.$(OBJ)
  4681. epsonc.dev: $(epsonc_) page.dev
  4682.     $(SETPDEV) epsonc $(epsonc_)
  4683.  
  4684. gdevepsc.$(OBJ): gdevepsc.c $(PDEVH)
  4685.  
  4686. ### ------------- The Epson ESC/P 2 language printer devices ------------- ###
  4687. ### Note: these drivers were contributed by users.                         ###
  4688. ### For questions about the Stylus 800 and AP3250 drivers, please contact  ###
  4689. ###        Richard Brown (rab@tauon.ph.unimelb.edu.au).                    ###
  4690. ### For questions about the Stylus Color drivers, please contact           ###
  4691. ###        Gunther Hess (gunther@elmos.de).                                ###
  4692.  
  4693. ESCP2=gdevescp.$(OBJ)
  4694.  
  4695. gdevescp.$(OBJ): gdevescp.c $(PDEVH)
  4696.  
  4697. ap3250.dev: $(ESCP2) page.dev
  4698.     $(SETPDEV) ap3250 $(ESCP2)
  4699.  
  4700. st800.dev: $(ESCP2) page.dev
  4701.     $(SETPDEV) st800 $(ESCP2)
  4702.  
  4703. stcolor1_=gdevstc.$(OBJ) gdevstc1.$(OBJ) gdevstc2.$(OBJ)
  4704. stcolor2_=gdevstc3.$(OBJ) gdevstc4.$(OBJ)
  4705. stcolor.dev: $(stcolor1_) $(stcolor2_) page.dev
  4706.     $(SETPDEV) stcolor $(stcolor1_)
  4707.     $(ADDMOD) stcolor -obj $(stcolor2_)
  4708.  
  4709. gdevstc.$(OBJ): gdevstc.c gdevstc.h $(PDEVH)
  4710.  
  4711. gdevstc1.$(OBJ): gdevstc1.c gdevstc.h $(PDEVH)
  4712.  
  4713. gdevstc2.$(OBJ): gdevstc2.c gdevstc.h $(PDEVH)
  4714.  
  4715. gdevstc3.$(OBJ): gdevstc3.c gdevstc.h $(PDEVH)
  4716.  
  4717. gdevstc4.$(OBJ): gdevstc4.c gdevstc.h $(PDEVH)
  4718.  
  4719. ### --------------- Ugly/Update -> Unified Printer Driver ---------------- ###
  4720. ### For questions about this driver, please contact:                       ###
  4721. ###        Gunther Hess (gunther@elmos.de)                                 ###
  4722.  
  4723. uniprint_=gdevupd.$(OBJ)
  4724. uniprint.dev: $(uniprint_) page.dev
  4725.     $(SETPDEV) uniprint $(uniprint_)
  4726.  
  4727. gdevupd.$(OBJ): gdevupd.c $(PDEVH) $(gsparam_h)
  4728.  
  4729. ### -------------- cdj850 - HP 850c Driver under development ------------- ###
  4730. ### Since this driver is in the development-phase it is not distributed    ###
  4731. ### with ghostscript, but it is available via anonymous ftp from:          ###
  4732. ###                        ftp://bonk.ethz.ch                              ###
  4733. ### For questions about this driver, please contact:                       ###
  4734. ###       Uli Wortmann (E-Mail address inside the driver-package)          ###
  4735.  
  4736. cdeskjet8_=gdevcd8.$(OBJ) $(HPPCL)
  4737.  
  4738. cdj850.dev: $(cdeskjet8_) page.dev
  4739.     $(SETPDEV) cdj850 $(cdeskjet8_)
  4740.  
  4741. ### ------------ The H-P PaintJet color printer device ----------------- ###
  4742. ### Note: this driver also supports the DEC LJ250 color printer, which   ###
  4743. ###       has a PaintJet-compatible mode, and the PaintJet XL.           ###
  4744. ### If you have questions about the XL, please contact Rob Reiss         ###
  4745. ###       (rob@moray.berkeley.edu).                                      ###
  4746.  
  4747. PJET=gdevpjet.$(OBJ) $(HPPCL)
  4748.  
  4749. gdevpjet.$(OBJ): gdevpjet.c $(PDEVH) $(gdevpcl_h)
  4750.  
  4751. lj250.dev: $(PJET) page.dev
  4752.     $(SETPDEV) lj250 $(PJET)
  4753.  
  4754. paintjet.dev: $(PJET) page.dev
  4755.     $(SETPDEV) paintjet $(PJET)
  4756.  
  4757. pjetxl.dev: $(PJET) page.dev
  4758.     $(SETPDEV) pjetxl $(PJET)
  4759.  
  4760. ### -------------- Imagen ImPress Laser Printer device ----------------- ###
  4761. ### Note: this driver was contributed by a user: please contact          ###
  4762. ###       Alan Millar (AMillar@bolis.sf-bay.org) if you have questions.  ###
  4763. ### Set USE_BYTE_STREAM if using parallel interface;                     ###
  4764. ### Don't set it if using 'ipr' spooler (default).                       ###
  4765. ### You may also add -DA4 if needed for A4 paper.             ###
  4766.  
  4767. imagen_=gdevimgn.$(OBJ)
  4768. imagen.dev: $(imagen_) page.dev
  4769.     $(SETPDEV) imagen $(imagen_)
  4770.  
  4771. gdevimgn.$(OBJ): gdevimgn.c $(PDEVH)
  4772.     $(CCC) gdevimgn.c            # for ipr spooler
  4773. #    $(CCC) -DUSE_BYTE_STREAM gdevimgn.c    # for parallel
  4774.  
  4775. ### ------- The IBM 3852 JetPrinter color inkjet printer device -------- ###
  4776. ### Note: this driver was contributed by users: please contact           ###
  4777. ###       Kevin Gift (kgift@draper.com) if you have questions.           ###
  4778. ### Note that the paper size that can be addressed by the graphics mode  ###
  4779. ###   used in this driver is fixed at 7-1/2 inches wide (the printable   ###
  4780. ###   width of the jetprinter itself.)                                   ###
  4781.  
  4782. jetp3852_=gdev3852.$(OBJ)
  4783. jetp3852.dev: $(jetp3852_) page.dev
  4784.     $(SETPDEV) jetp3852 $(jetp3852_)
  4785.  
  4786. gdev3852.$(OBJ): gdev3852.c $(PDEVH) $(gdevpcl_h)
  4787.  
  4788. ### ---------- The Canon LBP-8II and LIPS III printer devices ---------- ###
  4789. ### Note: these drivers were contributed by users.                       ###
  4790. ### For questions about these drivers, please contact                    ###
  4791. ###       Lauri Paatero, lauri.paatero@paatero.pp.fi                     ###
  4792.  
  4793. lbp8_=gdevlbp8.$(OBJ)
  4794. lbp8.dev: $(lbp8_) page.dev
  4795.     $(SETPDEV) lbp8 $(lbp8_)
  4796.  
  4797. lips3.dev: $(lbp8_) page.dev
  4798.     $(SETPDEV) lips3 $(lbp8_)
  4799.  
  4800. gdevlbp8.$(OBJ): gdevlbp8.c $(PDEVH)
  4801.  
  4802. ### ----------- The DEC LN03/LA50/LA70/LA75 printer devices ------------ ###
  4803. ### Note: this driver was contributed by users: please contact           ###
  4804. ###       Ulrich Mueller (ulm@vsnhd1.cern.ch) if you have questions.     ###
  4805. ### For questions about LA50 and LA75, please contact                    ###
  4806. ###       Ian MacPhedran (macphed@dvinci.USask.CA).                      ###
  4807. ### For questions about the LA70, please contact                         ###
  4808. ###       Bruce Lowekamp (lowekamp@csugrad.cs.vt.edu).                   ###
  4809. ### For questions about the LA75plus, please contact                     ###
  4810. ###       Andre' Beck (Andre_Beck@IRS.Inf.TU-Dresden.de).                ###
  4811.  
  4812. ln03_=gdevln03.$(OBJ)
  4813. ln03.dev: $(ln03_) page.dev
  4814.     $(SETPDEV) ln03 $(ln03_)
  4815.  
  4816. la50.dev: $(ln03_) page.dev
  4817.     $(SETPDEV) la50 $(ln03_)
  4818.  
  4819. la70.dev: $(ln03_) page.dev
  4820.     $(SETPDEV) la70 $(ln03_)
  4821.  
  4822. la75.dev: $(ln03_) page.dev
  4823.     $(SETPDEV) la75 $(ln03_)
  4824.  
  4825. la75plus.dev: $(ln03_) page.dev
  4826.     $(SETPDEV) la75plus $(ln03_)
  4827.  
  4828. gdevln03.$(OBJ): gdevln03.c $(PDEVH)
  4829.  
  4830. # LA70 driver with low-resolution text enhancement.
  4831.  
  4832. la70t_=gdevla7t.$(OBJ)
  4833. la70t.dev: $(la70t_) page.dev
  4834.     $(SETPDEV) la70t $(la70t_)
  4835.  
  4836. gdevla7t.$(OBJ): gdevla7t.c $(PDEVH)
  4837.  
  4838. ### -------------- The Epson LP-8000 laser printer device -------------- ###
  4839. ### Note: this driver was contributed by a user: please contact Oleg     ###
  4840. ###       Oleg Fat'yanov <faty1@rlem.titech.ac.jp> if you have questions.###
  4841.  
  4842. lp8000_=gdevlp8k.$(OBJ)
  4843. lp8000.dev: $(lp8000_) page.dev
  4844.     $(SETPDEV) lp8000 $(lp8000_)
  4845.  
  4846. gdevlp8k.$(OBJ): gdevlp8k.c $(PDEVH)
  4847.  
  4848. ### -------------- The C.Itoh M8510 printer device --------------------- ###
  4849. ### Note: this driver was contributed by a user: please contact Bob      ###
  4850. ###       Smith <bob@snuffy.penfield.ny.us> if you have questions.       ###
  4851.  
  4852. m8510_=gdev8510.$(OBJ)
  4853. m8510.dev: $(m8510_) page.dev
  4854.     $(SETPDEV) m8510 $(m8510_)
  4855.  
  4856. gdev8510.$(OBJ): gdev8510.c $(PDEVH)
  4857.  
  4858. ### --------------------- The NEC P6 family devices -------------------- ###
  4859.  
  4860. necp6_=gdevnp6.$(OBJ)
  4861. necp6.dev: $(necp6_) page.dev
  4862.     $(SETPDEV) necp6 $(necp6_)
  4863.  
  4864. gdevnp6.$(OBJ): gdevnp6.c $(PDEVH)
  4865.  
  4866. ### ----------------- The Okidata MicroLine 182 device ----------------- ###
  4867. ### Note: this driver was contributed by a user: please contact          ###
  4868. ###       Maarten Koning (smeg@bnr.ca) if you have questions.            ###
  4869.  
  4870. oki182_=gdevo182.$(OBJ)
  4871. oki182.dev: $(oki182_) page.dev
  4872.     $(SETPDEV) oki182 $(oki182_)
  4873.  
  4874. gdevo182.$(OBJ): gdevo182.c $(PDEVH)
  4875.  
  4876. ### ------------- The Okidata IBM compatible printer device ------------ ###
  4877. ### Note: this driver was contributed by a user: please contact          ###
  4878. ###       Charles Mack (chasm@netcom.com) if you have questions.         ###
  4879.  
  4880. okiibm_=gdevokii.$(OBJ)
  4881. okiibm.dev: $(okiibm_) page.dev
  4882.     $(SETPDEV) okiibm $(okiibm_)
  4883.  
  4884. gdevokii.$(OBJ): gdevokii.c $(PDEVH)
  4885.  
  4886. ### ------------- The Ricoh 4081 laser printer device ------------------ ###
  4887. ### Note: this driver was contributed by users:                          ###
  4888. ###       please contact kdw@oasis.icl.co.uk if you have questions.      ###
  4889.  
  4890. r4081_=gdev4081.$(OBJ)
  4891. r4081.dev: $(r4081_) page.dev
  4892.     $(SETPDEV) r4081 $(r4081_)
  4893.  
  4894.  
  4895. gdev4081.$(OBJ): gdev4081.c $(PDEVH)
  4896.  
  4897. ### -------------------- Sony NWP533 printer device -------------------- ###
  4898. ### Note: this driver was contributed by a user: please contact Tero     ###
  4899. ###       Kivinen (kivinen@joker.cs.hut.fi) if you have questions.       ###
  4900.  
  4901. nwp533_=gdevn533.$(OBJ)
  4902. nwp533.dev: $(nwp533_) page.dev
  4903.     $(SETPDEV) nwp533 $(nwp533_)
  4904.  
  4905. gdevn533.$(OBJ): gdevn533.c $(PDEVH)
  4906.  
  4907. ### ------------------------- The SPARCprinter ------------------------- ###
  4908. ### Note: this driver was contributed by users: please contact Martin    ###
  4909. ###       Schulte (schulte@thp.uni-koeln.de) if you have questions.      ###
  4910. ###       He would also like to hear from anyone using the driver.       ###
  4911. ### Please consult the source code for additional documentation.         ###
  4912.  
  4913. sparc_=gdevsppr.$(OBJ)
  4914. sparc.dev: $(sparc_) page.dev
  4915.     $(SETPDEV) sparc $(sparc_)
  4916.  
  4917. gdevsppr.$(OBJ): gdevsppr.c $(PDEVH)
  4918.  
  4919. ### ----------------- The StarJet SJ48 device -------------------------- ###
  4920. ### Note: this driver was contributed by a user: if you have questions,  ###
  4921. ###                          .                                          ###
  4922. ###       please contact Mats Akerblom (f86ma@dd.chalmers.se).           ###
  4923.  
  4924. sj48_=gdevsj48.$(OBJ)
  4925. sj48.dev: $(sj48_) page.dev
  4926.     $(SETPDEV) sj48 $(sj48_)
  4927.  
  4928. gdevsj48.$(OBJ): gdevsj48.c $(PDEVH)
  4929.  
  4930. ### ----------------- Tektronix 4396d color printer -------------------- ###
  4931. ### Note: this driver was contributed by a user: please contact          ###
  4932. ###       Karl Hakimian (hakimian@haney.eecs.wsu.edu)                    ###
  4933. ###       if you have questions.                                         ###
  4934.  
  4935. t4693d_=gdev4693.$(OBJ)
  4936. t4693d2.dev: $(t4693d_) page.dev
  4937.     $(SETPDEV) t4693d2 $(t4693d_)
  4938.  
  4939. t4693d4.dev: $(t4693d_) page.dev
  4940.     $(SETPDEV) t4693d4 $(t4693d_)
  4941.  
  4942. t4693d8.dev: $(t4693d_) page.dev
  4943.     $(SETPDEV) t4693d8 $(t4693d_)
  4944.  
  4945. gdev4693.$(OBJ): gdev4693.c $(PDEVH)
  4946.  
  4947. ### -------------------- Tektronix ink-jet printers -------------------- ###
  4948. ### Note: this driver was contributed by a user: please contact          ###
  4949. ###       Karsten Spang (spang@nbivax.nbi.dk) if you have questions.     ###
  4950.  
  4951. tek4696_=gdevtknk.$(OBJ)
  4952. tek4696.dev: $(tek4696_) page.dev
  4953.     $(SETPDEV) tek4696 $(tek4696_)
  4954.  
  4955. gdevtknk.$(OBJ): gdevtknk.c $(PDEVH) $(malloc__h)
  4956.  
  4957. ### ----------------- The Xerox XES printer device --------------------- ###
  4958. ### Note: this driver was contributed by users: please contact           ###
  4959. ###       Peter Flass (flass@lbdrscs.bitnet) if you have questions.      ###
  4960.  
  4961. xes_=gdevxes.$(OBJ)
  4962. xes.dev: $(xes_) page.dev
  4963.     $(SETPDEV) xes $(xes_)
  4964.  
  4965. gdevxes.$(OBJ): gdevxes.c $(PDEVH)
  4966.  
  4967. ###### ------------------------- Fax devices ------------------------- ######
  4968.  
  4969. ### --------------- Generic PostScript system compatible fax ------------ ###
  4970.  
  4971. # This code doesn't work yet.  Don't even think about using it.
  4972.  
  4973. PSFAX=gdevpfax.$(OBJ)
  4974.  
  4975. psfax_=$(PSFAX)
  4976. psfax.dev: $(psfax_) page.dev
  4977.     $(SETPDEV) psfax $(psfax_)
  4978.     $(ADDMOD) psfax -iodev Fax
  4979.  
  4980. gdevpfax.$(OBJ): gdevpfax.c $(PDEVH) $(gsparam_h) $(gxiodev_h)
  4981.  
  4982. ### ------------------------- The DigiFAX device ------------------------ ###
  4983. ###    This driver outputs images in a format suitable for use with       ###
  4984. ###    DigiBoard, Inc.'s DigiFAX software.  Use -sDEVICE=dfaxhigh for     ###
  4985. ###    high resolution output, -sDEVICE=dfaxlow for normal output.        ###
  4986. ### Note: this driver was contributed by a user: please contact           ###
  4987. ###       Rick Richardson (rick@digibd.com) if you have questions.        ###
  4988.  
  4989. dfax_=gdevdfax.$(OBJ) gdevtfax.$(OBJ)
  4990.  
  4991. dfaxlow.dev: $(dfax_) page.dev
  4992.     $(SETPDEV) dfaxlow $(dfax_)
  4993.     $(ADDMOD) dfaxlow -include cfe
  4994.  
  4995. dfaxhigh.dev: $(dfax_) page.dev
  4996.     $(SETPDEV) dfaxhigh $(dfax_)
  4997.     $(ADDMOD) dfaxhigh -include cfe
  4998.  
  4999. gdevdfax.$(OBJ): gdevdfax.c $(PDEVH) $(scfx_h) $(strimpl_h)
  5000.  
  5001. ### --------------See under TIFF below for fax-format TIFF -------------- ###
  5002.  
  5003. ###### ------------------- High-level file formats ------------------- ######
  5004.  
  5005. # Support for PostScript and PDF
  5006.  
  5007. gdevpsdf_h=gdevpsdf.h $(gdevvec_h) $(strimpl_h)
  5008. gdevpstr_h=gdevpstr.h
  5009.  
  5010. gdevpsdf.$(OBJ): gdevpsdf.c $(stdio__h) $(string__h)\
  5011.  $(gserror_h) $(gserrors_h) $(gsmemory_h) $(gsparam_h) $(gstypes_h)\
  5012.  $(gxdevice_h)\
  5013.  $(scfx_h) $(slzwx_h) $(srlx_h) $(strimpl_h)\
  5014.  $(gdevpsdf_h) $(gdevpstr_h)
  5015.  
  5016. gdevpstr.$(OBJ): gdevpstr.c $(math__h) $(stdio__h) $(string__h)\
  5017.  $(gdevpstr_h) $(stream_h)
  5018.  
  5019. # PostScript and EPS writers
  5020.  
  5021. pswrite1_=gdevps.$(OBJ) gdevpsdf.$(OBJ) gdevpstr.$(OBJ)
  5022. pswrite2_=scantab.$(OBJ) sfilter2.$(OBJ)
  5023. pswrite_=$(pswrite1_) $(pswrite2_)
  5024. epswrite.dev: $(ECHOGS_XE) $(pswrite_) vector.dev
  5025.     $(SETDEV) epswrite $(pswrite1_)
  5026.     $(ADDMOD) epswrite $(pswrite2_)
  5027.     $(ADDMOD) epswrite -include vector
  5028.  
  5029. pswrite.dev: $(ECHOGS_XE) $(pswrite_) vector.dev
  5030.     $(SETDEV) pswrite $(pswrite1_)
  5031.     $(ADDMOD) pswrite $(pswrite2_)
  5032.     $(ADDMOD) pswrite -include vector
  5033.  
  5034. gdevps.$(OBJ): gdevps.c $(GDEV) $(math__h) $(time__h)\
  5035.  $(gscdefs_h) $(gscspace_h) $(gsparam_h) $(gsiparam_h) $(gsmatrix_h)\
  5036.  $(gxdcolor_h)\
  5037.  $(sa85x_h) $(strimpl_h)\
  5038.  $(gdevpsdf_h) $(gdevpstr_h)
  5039.  
  5040. # PDF writer
  5041. # Note that gs_pdfwr.ps will only actually be loaded if the configuration
  5042. # includes a PostScript interpreter.
  5043.  
  5044. pdfwrite1_=gdevpdf.$(OBJ) gdevpdfi.$(OBJ) gdevpdfm.$(OBJ)
  5045. pdfwrite2_=gdevpdfp.$(OBJ) gdevpdft.$(OBJ) gdevpsdf.$(OBJ) gdevpstr.$(OBJ)
  5046. pdfwrite3_=gsflip.$(OBJ) scantab.$(OBJ) sfilter2.$(OBJ) sstring.$(OBJ)
  5047. pdfwrite_=$(pdfwrite1_) $(pdfwrite2_) $(pdfwrite3_)
  5048. pdfwrite.dev: $(ECHOGS_XE) $(pdfwrite_) \
  5049.   cmyklib.dev cfe.dev dcte.dev lzwe.dev rle.dev vector.dev
  5050.     $(SETDEV) pdfwrite $(pdfwrite1_)
  5051.     $(ADDMOD) pdfwrite $(pdfwrite2_)
  5052.     $(ADDMOD) pdfwrite $(pdfwrite3_)
  5053.     $(ADDMOD) pdfwrite -ps gs_pdfwr
  5054.     $(ADDMOD) pdfwrite -include cmyklib cfe dcte lzwe rle vector
  5055.  
  5056. gdevpdfx_h=gdevpdfx.h $(gsparam_h) $(gxdevice_h) $(gxline_h) $(stream_h)\
  5057.  $(gdevpsdf_h) $(gdevpstr_h)
  5058.  
  5059. gdevpdf.$(OBJ): gdevpdf.c $(math__h) $(string__h) $(time__h) $(gp_h) \
  5060.   $(gdevpdfx_h) $(gscdefs_h) $(gserrors_h) \
  5061.   $(gx_h) $(gxdevice_h) $(gxfixed_h) $(gxistate_h) $(gxpaint_h) \
  5062.   $(gzcpath_h) $(gzpath_h) $(scfx_h) $(strimpl_h)
  5063.  
  5064. gdevpdfi.$(OBJ): gdevpdfi.c $(memory__h) $(gx_h) \
  5065.   $(gdevpdfx_h) $(gserrors_h) $(gsflip_h) $(gxcspace_h) $(gxistate_h) \
  5066.   $(sa85x_h) $(scfx_h) $(srlx_h) $(strimpl_h)
  5067.  
  5068. gdevpdfm.$(OBJ): gdevpdfm.c $(memory__h) $(string__h) $(gx_h) \
  5069.   $(gdevpdfx_h) $(gserrors_h) $(gsutil_h) $(scanchar_h)
  5070.  
  5071. gdevpdfp.$(OBJ): gdevpdfp.c $(gx_h)\
  5072.  $(gdevpdfx_h) $(gserrors_h)
  5073.  
  5074. gdevpdft.$(OBJ): gdevpdft.c $(string__h) $(gx_h)\
  5075.  $(gdevpdfx_h) $(gserrors_h) $(gsutil_h)\
  5076.  $(sstring_h) $(strimpl_h)
  5077.  
  5078. # High-level PCL XL writer
  5079.  
  5080. pxl_=gdevpx.$(OBJ)
  5081. pxlmono.dev: $(pxl_) $(GDEV) vector.dev
  5082.     $(SETDEV) pxlmono $(pxl_)
  5083.     $(ADDMOD) pxlmono -include vector
  5084.  
  5085. pxlcolor.dev: $(pxl_) $(GDEV) vector.dev
  5086.     $(SETDEV) pxlcolor $(pxl_)
  5087.     $(ADDMOD) pxlcolor -include vector
  5088.  
  5089. gdevpx.$(OBJ): gdevpx.c $(math__h) $(memory__h) $(string__h)\
  5090.  $(gx_h) $(gsccolor_h) $(gsdcolor_h) $(gserrors_h)\
  5091.  $(gxcspace_h) $(gxdevice_h) $(gxpath_h)\
  5092.  $(gdevpxat_h) $(gdevpxen_h) $(gdevpxop_h) $(gdevvec_h)\
  5093.  $(srlx_h) $(strimpl_h)
  5094.  
  5095. ###### --------------------- Raster file formats --------------------- ######
  5096.  
  5097. ### --------------------- The "plain bits" devices ---------------------- ###
  5098.  
  5099. bit_=gdevbit.$(OBJ)
  5100.  
  5101. bit.dev: $(bit_) page.dev
  5102.     $(SETPDEV) bit $(bit_)
  5103.  
  5104. bitrgb.dev: $(bit_) page.dev
  5105.     $(SETPDEV) bitrgb $(bit_)
  5106.  
  5107. bitcmyk.dev: $(bit_) page.dev
  5108.     $(SETPDEV) bitcmyk $(bit_)
  5109.  
  5110. gdevbit.$(OBJ): gdevbit.c $(PDEVH) $(gsparam_h) $(gxlum_h)
  5111.  
  5112. ### ------------------------- .BMP file formats ------------------------- ###
  5113.  
  5114. bmp_=gdevbmp.$(OBJ) gdevpccm.$(OBJ)
  5115.  
  5116. gdevbmp.$(OBJ): gdevbmp.c $(PDEVH) $(gdevpccm_h)
  5117.  
  5118. bmpmono.dev: $(bmp_) page.dev
  5119.     $(SETPDEV) bmpmono $(bmp_)
  5120.  
  5121. bmp16.dev: $(bmp_) page.dev
  5122.     $(SETPDEV) bmp16 $(bmp_)
  5123.  
  5124. bmp256.dev: $(bmp_) page.dev
  5125.     $(SETPDEV) bmp256 $(bmp_)
  5126.  
  5127. bmp16m.dev: $(bmp_) page.dev
  5128.     $(SETPDEV) bmp16m $(bmp_)
  5129.  
  5130. ### -------------------------- CGM file format ------------------------- ###
  5131. ### This driver is under development.  Use at your own risk.             ###
  5132. ### The output is very low-level, consisting only of rectangles and      ###
  5133. ### cell arrays.                                                         ###
  5134.  
  5135. cgm_=gdevcgm.$(OBJ) gdevcgml.$(OBJ)
  5136.  
  5137. gdevcgml_h=gdevcgml.h
  5138. gdevcgmx_h=gdevcgmx.h $(gdevcgml_h)
  5139.  
  5140. gdevcgm.$(OBJ): gdevcgm.c $(GDEV) $(memory__h)\
  5141.  $(gsparam_h) $(gdevpccm_h) $(gdevcgml_h)
  5142.  
  5143. gdevcgml.$(OBJ): gdevcgml.c $(memory__h) $(stdio__h)\
  5144.  $(gdevcgmx_h)
  5145.  
  5146. cgmmono.dev: $(cgm_)
  5147.     $(SETDEV) cgmmono $(cgm_)
  5148.  
  5149. cgm8.dev: $(cgm_)
  5150.     $(SETDEV) cgm8 $(cgm_)
  5151.  
  5152. cgm24.dev: $(cgm_)
  5153.     $(SETDEV) cgm24 $(cgm_)
  5154.  
  5155. ### -------------------- The CIF file format for VLSI ------------------ ###
  5156. ### Note: this driver was contributed by a user: please contact          ###
  5157. ###       Frederic Petrot (petrot@masi.ibp.fr) if you have questions.    ###
  5158.  
  5159. cif_=gdevcif.$(OBJ)
  5160. cif.dev: $(cif_) page.dev
  5161.     $(SETPDEV) cif $(cif_)
  5162.  
  5163. gdevcif.$(OBJ): gdevcif.c $(PDEVH)
  5164.  
  5165. ### ------------------------- JPEG file format ------------------------- ###
  5166.  
  5167. jpeg_=gdevjpeg.$(OBJ)
  5168.  
  5169. # RGB output
  5170. jpeg.dev: $(jpeg_) sdcte.dev page.dev
  5171.     $(SETPDEV) jpeg $(jpeg_)
  5172.     $(ADDMOD) jpeg -include sdcte
  5173.  
  5174. # Gray output
  5175. jpeggray.dev: $(jpeg_) sdcte.dev page.dev
  5176.     $(SETPDEV) jpeggray $(jpeg_)
  5177.     $(ADDMOD) jpeggray -include sdcte
  5178.  
  5179. gdevjpeg.$(OBJ): gdevjpeg.c $(stdio__h) $(PDEVH)\
  5180.  $(sdct_h) $(sjpeg_h) $(stream_h) $(strimpl_h) jpeglib.h
  5181.  
  5182. ### ------------------------- MIFF file format ------------------------- ###
  5183. ### Right now we support only 24-bit direct color, but we might add more ###
  5184. ### formats in the future.                                               ###
  5185.  
  5186. miff_=gdevmiff.$(OBJ)
  5187.  
  5188. miff24.dev: $(miff_) page.dev
  5189.     $(SETPDEV) miff24 $(miff_)
  5190.  
  5191. gdevmiff.$(OBJ): gdevmiff.c $(PDEVH)
  5192.  
  5193. ### --------------------------- MGR devices ---------------------------- ###
  5194. ### Note: these drivers were contributed by a user: please contact       ###
  5195. ###       Carsten Emde (carsten@ce.pr.net.ch) if you have questions.     ###
  5196.  
  5197. MGR=gdevmgr.$(OBJ) gdevpccm.$(OBJ)
  5198.  
  5199. gdevmgr.$(OBJ): gdevmgr.c $(PDEVH) $(gdevpccm_h) gdevmgr.h
  5200.  
  5201. mgrmono.dev: $(MGR) page.dev
  5202.     $(SETPDEV) mgrmono $(MGR)
  5203.  
  5204. mgrgray2.dev: $(MGR) page.dev
  5205.     $(SETPDEV) mgrgray2 $(MGR)
  5206.  
  5207. mgrgray4.dev: $(MGR) page.dev
  5208.     $(SETPDEV) mgrgray4 $(MGR)
  5209.  
  5210. mgrgray8.dev: $(MGR) page.dev
  5211.     $(SETPDEV) mgrgray8 $(MGR)
  5212.  
  5213. mgr4.dev: $(MGR) page.dev
  5214.     $(SETPDEV) mgr4 $(MGR)
  5215.  
  5216. mgr8.dev: $(MGR) page.dev
  5217.     $(SETPDEV) mgr8 $(MGR)
  5218.  
  5219. ### ------------------------- PCX file formats ------------------------- ###
  5220.  
  5221. pcx_=gdevpcx.$(OBJ) gdevpccm.$(OBJ)
  5222.  
  5223. gdevpcx.$(OBJ): gdevpcx.c $(PDEVH) $(gdevpccm_h) $(gxlum_h)
  5224.  
  5225. pcxmono.dev: $(pcx_) page.dev
  5226.     $(SETPDEV) pcxmono $(pcx_)
  5227.  
  5228. pcxgray.dev: $(pcx_) page.dev
  5229.     $(SETPDEV) pcxgray $(pcx_)
  5230.  
  5231. pcx16.dev: $(pcx_) page.dev
  5232.     $(SETPDEV) pcx16 $(pcx_)
  5233.  
  5234. pcx256.dev: $(pcx_) page.dev
  5235.     $(SETPDEV) pcx256 $(pcx_)
  5236.  
  5237. pcx24b.dev: $(pcx_) page.dev
  5238.     $(SETPDEV) pcx24b $(pcx_)
  5239.  
  5240. pcxcmyk.dev: $(pcx_) page.dev
  5241.     $(SETPDEV) pcxcmyk $(pcx_)
  5242.  
  5243. # The 2-up PCX device is here only as an example, and for testing.
  5244. pcx2up.dev: $(LIB_MAK) $(ECHOGS_XE) gdevp2up.$(OBJ) page.dev pcx256.dev
  5245.     $(SETPDEV) pcx2up gdevp2up.$(OBJ)
  5246.     $(ADDMOD) pcx2up -include pcx256
  5247.  
  5248. gdevp2up.$(OBJ): gdevp2up.c $(AK)\
  5249.  $(gdevpccm_h) $(gdevprn_h) $(gxclpage_h)
  5250.  
  5251. ### ------------------- Portable Bitmap file formats ------------------- ###
  5252. ### For more information, see the pbm(5), pgm(5), and ppm(5) man pages.  ###
  5253.  
  5254. pxm_=gdevpbm.$(OBJ)
  5255.  
  5256. gdevpbm.$(OBJ): gdevpbm.c $(PDEVH) $(gscdefs_h) $(gxlum_h)
  5257.  
  5258. ### Portable Bitmap (PBM, plain or raw format, magic numbers "P1" or "P4")
  5259.  
  5260. pbm.dev: $(pxm_) page.dev
  5261.     $(SETPDEV) pbm $(pxm_)
  5262.  
  5263. pbmraw.dev: $(pxm_) page.dev
  5264.     $(SETPDEV) pbmraw $(pxm_)
  5265.  
  5266. ### Portable Graymap (PGM, plain or raw format, magic numbers "P2" or "P5")
  5267.  
  5268. pgm.dev: $(pxm_) page.dev
  5269.     $(SETPDEV) pgm $(pxm_)
  5270.  
  5271. pgmraw.dev: $(pxm_) page.dev
  5272.     $(SETPDEV) pgmraw $(pxm_)
  5273.  
  5274. # PGM with automatic optimization to PBM if this is possible.
  5275.  
  5276. pgnm.dev: $(pxm_) page.dev
  5277.     $(SETPDEV) pgnm $(pxm_)
  5278.  
  5279. pgnmraw.dev: $(pxm_) page.dev
  5280.     $(SETPDEV) pgnmraw $(pxm_)
  5281.  
  5282. ### Portable Pixmap (PPM, plain or raw format, magic numbers "P3" or "P6")
  5283.  
  5284. ppm.dev: $(pxm_) page.dev
  5285.     $(SETPDEV) ppm $(pxm_)
  5286.  
  5287. ppmraw.dev: $(pxm_) page.dev
  5288.     $(SETPDEV) ppmraw $(pxm_)
  5289.  
  5290. # PPM with automatic optimization to PGM or PBM if possible.
  5291.  
  5292. pnm.dev: $(pxm_) page.dev
  5293.     $(SETPDEV) pnm $(pxm_)
  5294.  
  5295. pnmraw.dev: $(pxm_) page.dev
  5296.     $(SETPDEV) pnmraw $(pxm_)
  5297.  
  5298. ### Portable inKmap (CMYK internally, converted to PPM=RGB at output time)
  5299.  
  5300. pkm.dev: $(pxm_) page.dev
  5301.     $(SETPDEV) pkm $(pxm_)
  5302.  
  5303. pkmraw.dev: $(pxm_) page.dev
  5304.     $(SETPDEV) pkmraw $(pxm_)
  5305.  
  5306. ### --------------- Portable Network Graphics file format --------------- ###
  5307. ### Requires libpng 0.81 and zlib 0.95 (or more recent versions).         ###
  5308. ### See libpng.mak and zlib.mak for more details.                         ###
  5309.  
  5310. png_=gdevpng.$(OBJ) gdevpccm.$(OBJ)
  5311.  
  5312. gdevpng.$(OBJ): gdevpng.c $(gdevprn_h) $(gdevpccm_h) $(gscdefs_h) $(PSRC)png.h
  5313.     $(CCCP) -I. $(srcdir)/gdevpng.c
  5314.  
  5315. pngmono.dev: libpng.dev $(png_) page.dev
  5316.     $(SETPDEV) pngmono  $(png_)
  5317.     $(ADDMOD) pngmono  -include libpng
  5318.  
  5319. pnggray.dev: libpng.dev $(png_) page.dev
  5320.     $(SETPDEV) pnggray  $(png_)
  5321.     $(ADDMOD) pnggray  -include libpng
  5322.  
  5323. png16.dev: libpng.dev $(png_) page.dev
  5324.     $(SETPDEV) png16  $(png_)
  5325.     $(ADDMOD) png16  -include libpng
  5326.  
  5327. png256.dev: libpng.dev $(png_) page.dev
  5328.     $(SETPDEV) png256  $(png_)
  5329.     $(ADDMOD) png256  -include libpng
  5330.  
  5331. png16m.dev: libpng.dev $(png_) page.dev
  5332.     $(SETPDEV) png16m  $(png_)
  5333.     $(ADDMOD) png16m  -include libpng
  5334.  
  5335. ### ---------------------- PostScript image format ---------------------- ###
  5336. ### These devices make it possible to print Level 2 files on a Level 1    ###
  5337. ###   printer, by converting them to a bitmap in PostScript format.       ###
  5338.  
  5339. ps_=gdevpsim.$(OBJ)
  5340.  
  5341. gdevpsim.$(OBJ): gdevpsim.c $(PDEVH)
  5342.  
  5343. psmono.dev: $(ps_) page.dev
  5344.     $(SETPDEV) psmono $(ps_)
  5345.  
  5346. psgray.dev: $(ps_) page.dev
  5347.     $(SETPDEV) psgray $(ps_)
  5348.  
  5349. # Someday there will be RGB and CMYK variants....
  5350.  
  5351. ### -------------------------- SGI RGB pixmaps -------------------------- ###
  5352.  
  5353. sgirgb_=gdevsgi.$(OBJ)
  5354.  
  5355. gdevsgi.$(OBJ): gdevsgi.c $(PDEVH) gdevsgi.h
  5356.  
  5357. sgirgb.dev: $(sgirgb_) page.dev
  5358.     $(SETPDEV) sgirgb $(sgirgb_)
  5359.  
  5360. ### -------------------- Plain or TIFF fax encoding --------------------- ###
  5361. ###    Use -sDEVICE=tiffg3 or tiffg4 and                  ###
  5362. ###      -r204x98 for low resolution output, or              ###
  5363. ###      -r204x196 for high resolution output                  ###
  5364. ###    These drivers recognize 3 page sizes: letter, A4, and B4.      ###
  5365.  
  5366. gdevtifs_h=gdevtifs.h
  5367.  
  5368. tfax_=gdevtfax.$(OBJ)
  5369. tfax.dev: $(tfax_) cfe.dev lzwe.dev rle.dev tiffs.dev
  5370.     $(SETMOD) tfax $(tfax_)
  5371.     $(ADDMOD) tfax -include cfe lzwe rle tiffs
  5372.  
  5373. gdevtfax.$(OBJ): gdevtfax.c $(PDEVH)\
  5374.  $(gdevtifs_h) $(scfx_h) $(slzwx_h) $(srlx_h) $(strimpl_h)
  5375.  
  5376. ### Plain G3/G4 fax with no header
  5377.  
  5378. faxg3.dev: tfax.dev
  5379.     $(SETDEV) faxg3 -include tfax
  5380.  
  5381. faxg32d.dev: tfax.dev
  5382.     $(SETDEV) faxg32d -include tfax
  5383.  
  5384. faxg4.dev: tfax.dev
  5385.     $(SETDEV) faxg4 -include tfax
  5386.  
  5387. ### ---------------------------- TIFF formats --------------------------- ###
  5388.  
  5389. tiffs_=gdevtifs.$(OBJ)
  5390. tiffs.dev: $(tiffs_) page.dev
  5391.     $(SETMOD) tiffs $(tiffs_)
  5392.     $(ADDMOD) tiffs -include page
  5393.  
  5394. gdevtifs.$(OBJ): gdevtifs.c $(PDEVH) $(stdio__h) $(time__h) \
  5395.  $(gdevtifs_h) $(gscdefs_h) $(gstypes_h)
  5396.  
  5397. # Black & white, G3/G4 fax
  5398.  
  5399. tiffcrle.dev: tfax.dev
  5400.     $(SETDEV) tiffcrle -include tfax
  5401.  
  5402. tiffg3.dev: tfax.dev
  5403.     $(SETDEV) tiffg3 -include tfax
  5404.  
  5405. tiffg32d.dev: tfax.dev
  5406.     $(SETDEV) tiffg32d -include tfax
  5407.  
  5408. tiffg4.dev: tfax.dev
  5409.     $(SETDEV) tiffg4 -include tfax
  5410.  
  5411. # Black & white, LZW compression
  5412.  
  5413. tifflzw.dev: tfax.dev
  5414.     $(SETDEV) tifflzw -include tfax
  5415.  
  5416. # Black & white, PackBits compression
  5417.  
  5418. tiffpack.dev: tfax.dev
  5419.     $(SETDEV) tiffpack -include tfax
  5420.  
  5421. # RGB, no compression
  5422.  
  5423. tiffrgb_=gdevtfnx.$(OBJ)
  5424.  
  5425. tiff12nc.dev: $(tiffrgb_) tiffs.dev
  5426.     $(SETPDEV) tiff12nc $(tiffrgb_)
  5427.     $(ADDMOD) tiff12nc -include tiffs
  5428.  
  5429. tiff24nc.dev: $(tiffrgb_) tiffs.dev
  5430.     $(SETPDEV) tiff24nc $(tiffrgb_)
  5431.     $(ADDMOD) tiff24nc -include tiffs
  5432.  
  5433. gdevtfnx.$(OBJ): gdevtfnx.c $(PDEVH) $(gdevtifs_h)
  5434. #    Copyright (C) 1990, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  5435. # This file is part of Aladdin Ghostscript.
  5436. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  5437. # or distributor accepts any responsibility for the consequences of using it,
  5438. # or for whether it serves any particular purpose or works at all, unless he
  5439. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  5440. # License (the "License") for full details.
  5441. # Every copy of Aladdin Ghostscript must include a copy of the License,
  5442. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  5443. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  5444. # under certain conditions described in the License.  Among other things, the
  5445. # License requires that the copyright notice and this notice be preserved on
  5446. # all copies.
  5447.  
  5448. # Partial makefile common to all Unix configurations.
  5449.  
  5450. # This is the last part of the makefile for Unix configurations.
  5451. # Since Unix make doesn't have an 'include' facility, we concatenate
  5452. # the various parts of the makefile together by brute force (in tar_cat).
  5453.  
  5454. # Define the name of this makefile.
  5455. UNIXTAIL_MAK=unixtail.mak
  5456.  
  5457. # The following prevents GNU make from constructing argument lists that
  5458. # include all environment variables, which can easily be longer than
  5459. # brain-damaged system V allows.
  5460.  
  5461. .NOEXPORT:
  5462.  
  5463. # -------------------------------- Library -------------------------------- #
  5464.  
  5465. amiga__=gp_nofb.$(OBJ) gp_amiga.$(OBJ) gdevpipe.$(OBJ) #ldexp.$(OBJ) frexp.$(OBJ) modf.$(OBJ)
  5466. amiga_.dev: $(amiga__)
  5467.     $(SETMOD) amiga_ $(amiga__)
  5468.     $(ADDMOD) amiga_ -iodev pipe
  5469.  
  5470. gp_amiga.$(OBJ): gp_amiga.c $(AK) $(string__h) $(gx_h) $(gsexit_h) $(gp_h) \
  5471.   $(time__h)
  5472.  
  5473. ## The Unix platforms
  5474.  
  5475. # We have to include a test for the existence of sys/time.h,
  5476. # because some System V platforms don't have it.
  5477.  
  5478. # Define pipes as a separable feature.
  5479.  
  5480. pipe_=gdevpipe.$(OBJ)
  5481. pipe.dev: $(UNIXTAIL_MAK) $(ECHOGS_XE) $(pipe_)
  5482.     $(SETMOD) pipe $(pipe_)
  5483.     $(ADDMOD) pipe -iodev pipe
  5484.  
  5485. gdevpipe.$(OBJ): gdevpipe.c $(AK) $(errno__h) $(stdio__h) $(string__h) \
  5486.   $(gserror_h) $(gsmemory_h) $(gstypes_h) $(gxiodev_h) $(stream_h)
  5487.  
  5488. # Unix platforms other than System V, and also System V Release 4
  5489. # (SVR4) platforms.
  5490. unix__=gp_nofb.$(OBJ) gp_unix.$(OBJ) gp_unifs.$(OBJ) gp_unifn.$(OBJ)
  5491. unix_.dev: $(unix__)
  5492.     $(SETMOD) unix_ $(unix__)
  5493.  
  5494. gp_unix.$(OBJ): gp_unix.c $(AK) $(string__h) $(gx_h) $(gsexit_h) $(gp_h) \
  5495.   $(time__h)
  5496.  
  5497. # System V platforms other than SVR4, which lack some system calls,
  5498. # but have pipes.
  5499. sysv__=gp_nofb.$(OBJ) gp_unix.$(OBJ) gp_unifs.$(OBJ) gp_unifn.$(OBJ) gp_sysv.$(OBJ)
  5500. sysv_.dev: $(sysv__)
  5501.     $(SETMOD) sysv_ $(sysv__)
  5502.  
  5503. gp_sysv.$(OBJ): gp_sysv.c $(stdio__h) $(time__h) $(AK)
  5504.  
  5505. # -------------------------- Auxiliary programs --------------------------- #
  5506.  
  5507. $(ANSI2KNR_XE): ansi2knr.c
  5508.     $(CCA2K) $(O)$(ANSI2KNR_XE) $(srcdir)/ansi2knr.c
  5509.  
  5510. $(ECHOGS_XE): echogs.c $(AK)
  5511.     $(CCAUX) $(O)$(ECHOGS_XE) $(srcdir)/echogs.c
  5512.  
  5513. # On the RS/6000 (at least), compiling genarch.c with gcc with -O
  5514. # produces a buggy executable.
  5515. $(GENARCH_XE): genarch.c $(AK) $(stdpre_h)
  5516.     $(CCAUX) $(O)$(GENARCH_XE) $(srcdir)/genarch.c
  5517.  
  5518. $(GENCONF_XE): genconf.c $(AK) $(stdpre_h)
  5519.     $(CCAUX) $(O)$(GENCONF_XE) $(srcdir)/genconf.c
  5520.  
  5521. $(GENINIT_XE): geninit.c $(AK) $(stdio__h) $(string__h)
  5522.     $(CCAUX) $(O)$(GENINIT_XE) $(srcdir)/geninit.c
  5523.  
  5524. # Query the environment to construct gconfig_.h.
  5525. # The "else true; is required because Ultrix's implementation of sh -e
  5526. # terminates execution of a command if any error occurs, even if the command
  5527. # traps the error with ||.
  5528. INCLUDE=/usr/include
  5529. gconfig_.h: $(UNIXTAIL_MAK) $(ECHOGS_XE)
  5530.     ./echogs -w gconfig_.h -x 2f2a -s This file was generated automatically. -s -x 2a2f
  5531.     if ( test -f $(INCLUDE)/dirent.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_DIRENT_H; else true; fi
  5532.     if ( test -f $(INCLUDE)/ndir.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_NDIR_H; else true; fi
  5533.     if ( test -f $(INCLUDE)/sys/dir.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_SYS_DIR_H; else true; fi
  5534.     if ( test -f $(INCLUDE)/sys/ndir.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_SYS_NDIR_H; else true; fi
  5535.     if ( test -f $(INCLUDE)/sys/time.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_SYS_TIME_H; else true; fi
  5536.     if ( test -f $(INCLUDE)/sys/times.h ); then ./echogs -a gconfig_.h -x 23 define HAVE_SYS_TIMES_H; else true; fi
  5537.  
  5538. # ----------------------------- Main program ------------------------------ #
  5539.  
  5540. ### Library files and archive
  5541.  
  5542. LIB_ARCHIVE_ALL=$(LIB_ALL) $(DEVS_ALL)\
  5543.  gsnogc.$(OBJ) gconfig.$(OBJ) gscdefs.$(OBJ)
  5544.  
  5545. # Build an archive for the library only.
  5546. # This is not used in a standard build.
  5547. GSLIB_A=$(GS)lib.a
  5548. $(GSLIB_A): $(LIB_ARCHIVE_ALL)
  5549.     rm -f $(GSLIB_A)
  5550.     $(AR) $(ARFLAGS) $(GSLIB_A) $(LIB_ARCHIVE_ALL)
  5551.     $(RANLIB) $(GSLIB_A)
  5552.  
  5553. ### Interpreter main program
  5554.  
  5555. INT_ARCHIVE_ALL=imainarg.$(OBJ) imain.$(OBJ) $(INT_ALL) $(DEVS_ALL)\
  5556.  gconfig.$(OBJ) gscdefs.$(OBJ)
  5557. XE_ALL=gs.$(OBJ) $(INT_ARCHIVE_ALL)
  5558.  
  5559. # Build a library archive for the entire interpreter.
  5560. # This is not used in a standard build.
  5561. GS_A=$(GS).a
  5562. $(GS_A): $(INT_ARCHIVE_ALL)
  5563.     rm -f $(GS_A)
  5564.     $(AR) $(ARFLAGS) $(GS_A) $(INT_ARCHIVE_ALL)
  5565.     $(RANLIB) $(GS_A)
  5566.  
  5567. # Here is the final link step.  The stuff with LD_RUN_PATH is for SVR4
  5568. # systems with dynamic library loading; I believe it's harmless elsewhere.
  5569. # The resetting of the environment variables to empty strings is for SCO Unix,
  5570. # which has limited environment space.
  5571. $(GS_XE): ld.tr echogs $(XE_ALL)
  5572.     ./echogs -w ldt.tr -n - $(CCLD) $(LDFLAGS) $(XLIBDIRS) -o $(GS_XE)
  5573.     ./echogs -a ldt.tr -n -s gs.$(OBJ) -s
  5574.     cat ld.tr >>ldt.tr
  5575.     ./echogs -a ldt.tr -s - $(EXTRALIBS) -lm
  5576.     LD_RUN_PATH=$(XLIBDIR); export LD_RUN_PATH; \
  5577.     XCFLAGS= XINCLUDE= XLDFLAGS= XLIBDIRS= XLIBS= \
  5578.     FEATURE_DEVS= DEVICE_DEVS= DEVICE_DEVS1= DEVICE_DEVS2= DEVICE_DEVS3= \
  5579.     DEVICE_DEVS4= DEVICE_DEVS5= DEVICE_DEVS6= DEVICE_DEVS7= DEVICE_DEVS8= \
  5580.     DEVICE_DEVS9= DEVICE_DEVS10= DEVICE_DEVS11= DEVICE_DEVS12= \
  5581.     DEVICE_DEVS13= DEVICE_DEVS14= DEVICE_DEVS15= \
  5582.     $(SH) <ldt.tr
  5583. #    Copyright (C) 1994, 1995, 1996, 1997 Aladdin Enterprises.  All rights reserved.
  5584. # This file is part of Aladdin Ghostscript.
  5585. # Aladdin Ghostscript is distributed with NO WARRANTY OF ANY KIND.  No author
  5586. # or distributor accepts any responsibility for the consequences of using it,
  5587. # or for whether it serves any particular purpose or works at all, unless he
  5588. # or she says so in writing.  Refer to the Aladdin Ghostscript Free Public
  5589. # License (the "License") for full details.
  5590. # Every copy of Aladdin Ghostscript must include a copy of the License,
  5591. # normally in a plain ASCII text file named PUBLIC.  The License grants you
  5592. # the right to copy, modify and redistribute Aladdin Ghostscript, but only
  5593. # under certain conditions described in the License.  Among other things, the
  5594. # License requires that the copyright notice and this notice be preserved on
  5595. # all copies.
  5596.  
  5597. # Partial makefile common to all Unix and Desqview/X configurations.
  5598.  
  5599. # This is the very last part of the makefile for these configurations.
  5600. # Since Unix make doesn't have an 'include' facility, we concatenate
  5601. # the various parts of the makefile together by brute force (in tar_cat).
  5602.  
  5603. # Define a rule for building profiling configurations.
  5604. pg:
  5605.     make GENOPT='' CFLAGS='-pg -O $(GCFLAGS) $(XCFLAGS)' LDFLAGS='$(XLDFLAGS) -pg' XLIBS='Xt SM ICE Xext X11' CCLEAF='$(CCC)'
  5606.  
  5607. # Define a rule for building debugging configurations.
  5608. debug:
  5609.     make GENOPT='-DDEBUG' CFLAGS='-g -O $(GCFLAGS) $(XCFLAGS)'
  5610.  
  5611. # The rule for gconfigv.h is here because it is shared between Unix and
  5612. # DV/X environments.
  5613. gconfigv.h: unix-end.mak $(MAKEFILE) $(ECHOGS_XE)
  5614.     $(EXP)echogs -w gconfigv.h -x 23 define USE_ASM -x 2028 -q $(USE_ASM)-0 -x 29
  5615.     $(EXP)echogs -a gconfigv.h -x 23 define USE_FPU -x 2028 -q $(FPU_TYPE)-0 -x 29
  5616.     $(EXP)echogs -a gconfigv.h -x 23 define EXTEND_NAMES 0$(EXTEND_NAMES)
  5617.  
  5618. # The following rules are equivalent to what tar_cat does.
  5619. # The rm -f is so that we don't overwrite a file that `make'
  5620. # may currently be reading from.
  5621. GENERIC_MAK_LIST=$(GS_MAK) $(LIB_MAK) $(INT_MAK) $(JPEG_MAK) $(LIBPNG_MAK) $(ZLIB_MAK) $(DEVS_MAK)
  5622. UNIX_MAK_LIST=dvx-gcc.mak unixansi.mak unix-cc.mak unix-gcc.mak
  5623.  
  5624. unix.mak: $(UNIX_MAK_LIST)
  5625.  
  5626. DVX_GCC_MAK=$(VERSION_MAK) dgc-head.mak dvx-head.mak $(GENERIC_MAK_LIST) dvx-tail.mak unix-end.mak
  5627. dvx-gcc.mak: $(DVX_GCC_MAK)
  5628.     rm -f dvx-gcc.mak
  5629.     $(CAT) $(DVX_GCC_MAK) >dvx-gcc.mak
  5630.  
  5631. UNIXANSI_MAK=$(VERSION_MAK) ansihead.mak unixhead.mak $(GENERIC_MAK_LIST) unixtail.mak unix-end.mak
  5632. unixansi.mak: $(UNIXANSI_MAK)
  5633.     rm -f unixansi.mak
  5634.     $(CAT) $(UNIXANSI_MAK) >unixansi.mak
  5635.  
  5636. UNIX_CC_MAK=$(VERSION_MAK) cc-head.mak unixhead.mak $(GENERIC_MAK_LIST) unixtail.mak unix-end.mak
  5637. unix-cc.mak: $(UNIX_CC_MAK)
  5638.     rm -f unix-cc.mak
  5639.     $(CAT) $(UNIX_CC_MAK) >unix-cc.mak
  5640.  
  5641. UNIX_GCC_MAK=$(VERSION_MAK) gcc-head.mak unixhead.mak $(GENERIC_MAK_LIST) unixtail.mak unix-end.mak
  5642. unix-gcc.mak: $(UNIX_GCC_MAK)
  5643.     rm -f unix-gcc.mak
  5644.     $(CAT) $(UNIX_GCC_MAK) >unix-gcc.mak
  5645.  
  5646. # Installation
  5647.  
  5648. TAGS:
  5649.     etags -t *.c *.h
  5650.  
  5651. install: install-exec install-scripts install-data
  5652.  
  5653. # The sh -c in the rules below is required because Ultrix's implementation
  5654. # of sh -e terminates execution of a command if any error occurs, even if
  5655. # the command traps the error with ||.
  5656. # JOOP: change needed when installing for ixemul
  5657. #       $(INSTALL_PROGRAM) $(GS) $(bindir)/$(GS)
  5658. #       remove '#' from -mkdir $(bindir)
  5659. #       Seems that gnu:bin/mkdir needs '-p' when multiple directories are made
  5660. #       added '-p' to all mkdir commands, just in case user makes weird dirs
  5661.  
  5662. install-exec: $(GS)
  5663.     -mkdir $(bindir)
  5664.     $(INSTALL_PROGRAM) $(GS) $(bindir)$(GS)
  5665.  
  5666. install-scripts: gsnd
  5667.     -mkdir $(scriptdir)
  5668.     sh -c 'for f in gsbj gsdj gsdj500 gslj gslp gsnd bdftops font2c \
  5669. pdf2dsc pdf2ps printafm ps2ascii ps2epsi ps2pdf wftopfa ;\
  5670.     do if ( test -f $(srcdir)/$$f ); then $(INSTALL_PROGRAM) $(srcdir)/$$f $(scriptdir)/$$f; fi;\
  5671.     done'
  5672.  
  5673. MAN1_PAGES=gs pdf2dsc pdf2ps ps2ascii ps2epsi ps2pdf
  5674. install-data: gs.1
  5675.     -mkdir $(mandir)
  5676.     -mkdir $(man1dir)
  5677.     sh -c 'for f in $(MAN1_PAGES) ;\
  5678.     do if ( test -f $(srcdir)/$$f.1 ); then $(INSTALL_DATA) $(srcdir)/$$f.1 $(man1dir)/$$f.$(man1ext); fi;\
  5679.     done'
  5680.     -mkdir $(datadir)
  5681.     -mkdir $(gsdir)
  5682.     -mkdir $(gsdatadir)
  5683.     sh -c 'for f in Fontmap \
  5684. cbjc600.ppd cbjc800.ppd \
  5685. necp2x.upp ras1.upp ras24.upp ras3.upp ras32.upp ras4.upp ras8m.upp stc.upp \
  5686. stc2.upp stc2_h.upp stc2s_h.upp stc500p.upp stc500ph.upp stc600ih.upp stc600p.upp \
  5687. stc600pl.upp stc800ih.upp stc800p.upp stc800pl.upp stc_h.upp stc_l.upp stcany.upp \
  5688. cdj550.upp \
  5689. gs_init.ps gs_btokn.ps gs_ccfnt.ps gs_cff.ps gs_cidfn.ps gs_cmap.ps \
  5690. gs_diskf.ps gs_dpnxt.ps gs_dps.ps gs_dps1.ps gs_dps2.ps gs_epsf.ps \
  5691. gs_fonts.ps gs_kanji.ps gs_lev2.ps \
  5692. gs_pfile.ps gs_res.ps gs_setpd.ps gs_statd.ps \
  5693. gs_ttf.ps gs_typ42.ps gs_type1.ps \
  5694. gs_dbt_e.ps gs_iso_e.ps gs_ksb_e.ps gs_std_e.ps gs_sym_e.ps \
  5695. acctest.ps align.ps bdftops.ps caption.ps decrypt.ps docie.ps \
  5696. font2c.ps gslp.ps impath.ps landscap.ps level1.ps lines.ps \
  5697. markhint.ps markpath.ps \
  5698. packfile.ps pcharstr.ps pfbtogs.ps ppath.ps prfont.ps printafm.ps \
  5699. ps2ai.ps ps2ascii.ps ps2epsi.ps ps2image.ps \
  5700. quit.ps showchar.ps showpage.ps stcinfo.ps stcolor.ps \
  5701. traceimg.ps traceop.ps type1enc.ps type1ops.ps uninfo.ps unprot.ps \
  5702. viewcmyk.ps viewgif.ps viewjpeg.ps viewpcx.ps viewpbm.ps viewps2a.ps \
  5703. winmaps.ps wftopfa.ps wrfont.ps zeroline.ps \
  5704. gs_l2img.ps gs_pdf.ps \
  5705. pdf2dsc.ps \
  5706. pdf_base.ps pdf_draw.ps pdf_font.ps pdf_main.ps pdf_sec.ps pdf_2ps.ps \
  5707. gs_mex_e.ps gs_mro_e.ps gs_pdf_e.ps gs_wan_e.ps \
  5708. gs_pdfwr.ps ;\
  5709.     do if ( test -f $(srcdir)/$$f ); then $(INSTALL_DATA) $(srcdir)/$$f $(gsdatadir)/$$f; fi;\
  5710.     done'
  5711.     -mkdir $(docdir)
  5712.     sh -c 'for f in COPYING NEWS PUBLIC README \
  5713. bug-form.txt c-style.txt current.txt devices.txt drivers.txt fonts.txt \
  5714. helpers.txt hershey.txt history1.txt history2.txt history3.txt humor.txt \
  5715. install.txt language.txt lib.txt make.txt new-user.txt \
  5716. ps2epsi.txt ps2pdf.txt psfiles.txt public.txt \
  5717. unix-lpr.txt use.txt xfonts.txt ;\
  5718.     do if ( test -f $(srcdir)/$$f ); then $(INSTALL_DATA) $(srcdir)/$$f $(docdir)/$$f; fi;\
  5719.     done'
  5720.     -mkdir $(exdir)
  5721.     for f in alphabet.ps chess.ps cheq.ps colorcir.ps escher.ps golfer.ps \
  5722. grayalph.ps snowflak.ps tiger.ps waterfal.ps ;\
  5723.     do $(INSTALL_DATA) $(srcdir)/$$f $(exdir)/$$f ;\
  5724.     done
  5725.